구문 오류: 예기치 않은 파일 끝 - Bash 스크립트

구문 오류: 예기치 않은 파일 끝 - Bash 스크립트

스프릿츠 앱을 만들어 보려고 합니다! 모든 것이 잘 실행되고 있지만 어제부터 다음 오류가 계속 발생합니다: ./spritz: line 176: Syntax error: Unexpected end of file

스크립트 파일을 확인했는데 모든 것이 완벽해 보였습니다! 너무 혼란스러워서 마침내 if 문을 갖게 되었는데 맞는 것 같습니다! 이것은 마지막 부분입니다:

    #checks if speed is 150
157 if [[ $2 -eq 150 ]];
158 then
159 starttime=$SECONDS
160      FS=$'\n'
161      for j in `grep --color=always -iP '\b[^aeiou\s]*[aeiou][^aeiou\s]*\K[aeiou]' $1`;
162      do
163            #Reads the text file in the centre of the screen
164            echo "                                                    ___________________"
165            echo "                                                             $j";
166            echo "                                                    ___________________"
167            echo "                                                                               Speed 150 wpm"
168            sleep  0.9;
169            clear;
170       done
171 endtime=$(($SECONDS - $starttime))
172            echo "You read $words_read words in $endtime seconds!"
173       exit 8
174 fi

답변1

일부 내용을 수정하고 일부 삭제 ;하고 다시 포맷했습니다. 작업 결과는 다음과 같습니다.

#checks if speed is 150
if [ $2 -eq 150 ] ; then
    words=0
    starttime=$(date +%s)
    FS=$'\n'
    for j in $(grep --color=always -iP '\b[^aeiou\s]*[aeiou][^aeiou\s]*\K[aeiou]' $1) ; do
        #Reads the text file in the centre of the screen
        echo "                                                    ___________________"
        echo "                                                             $j";
        echo "                                                    ___________________"
        echo "                                                          Speed 150 wpm"
        sleep  0.9
        clear
        words=$(( $words + 1 ))
    done

    endtime=$(( $(date +%s) - $starttime ))
    echo "You read $words words in $endtime seconds!"

    exit 8
fi

관련 정보