누군가 내 코드를 보고 내가 뭘 잘못하고 있는지 확인할 수 있나요?

누군가 내 코드를 보고 내가 뭘 잘못하고 있는지 확인할 수 있나요?

내 코드는 사용자에게 생성하려는 디렉터리의 이름을 입력하라는 메시지를 표시한 다음 디렉터리의 파일을 편집하라는 메시지를 표시해야 하지만 디렉터리를 생성한 후에는 스크립트가 계속 진행되지 않고 오류가 표시되지 않습니다. , 그러나 새로운 눈으로 코드를 비판하는 것은 항상 더 쉽습니다.

또한 디렉토리에 파일을 추가하지만 편집할지 여부를 묻지 않습니다.

#!/bin/bash

#Testing to see if input is empty 
if [ $# -lt 1 ]; then
    echo "Empty Directory will be created"
fi

#Get the name of the directory by the user, also creating a variable named directory 
read -p "Please enter the name of the drectory you wish to create: " directory

#Check if the directory exists, if it doesn't it will be created in the Home folder
if [ ! -d ~/$directory ]; then
#Creating the directory if it doesnt exist
    mkdir ~/$directory/
fi

#Create files individually in the directory 
for i in "$@"; do
    touch ~/$directory/$i
#Asking the user if they wish to edit the files they have created inside the directory
    read -p "edit file $i (Y/N)? " edit
#If they answer yes then read the lines entered by the user

if [["$edit" = "Y" || "$edit" = "y"]]; then
    line=""

    #Stores the amount of words added to the file
    count=0

    #Reads the lines enetered by the user 
    echo "Please enter your text to be added into the file (Enter \"end\" to exit the editing):"
    read line

    #The script will keep reading the words entered in the file until the user initiates the end command "end"

        while ["$line" != "end"]; do
    
        #repeat the words entered into the file
        echo "$line" >> ~/directory/$i
    
        #Get the amount of words entered into the file
        count=$(($count + $(wc -w <<< $line)))
    
        #read the next line from user input
        read line 
        
    done
    echo "$count words have been written to the file"
    
fi
done

답변1

이 줄을 바꾸세요

if [["$edit" = "Y" || "$edit" = "y"]]; then

이 줄을 사용하면:

if [[ "$edit" = "Y" || "$edit" = "y" ]]; then

[[ ]] 뒤에 공백이 없습니다.

또한 ~ 대신 $HOME을 사용하는 것이 더 좋습니다.

관련 정보