반응형
오늘은 Linux에서 Shell script를 실행할때 발생하는 오류인
syntax error: unexpected end of file 해결방법에 대해 포스팅 하려고 합니다.
내용은 매우 간단합니다.
해당 linux shell script에서 if문을 사용할때
마지막에 fi가 누락되어 발생하는 오류입니다.
아래와 같은 형태로 fi로 마무리를 해야 합니다.
if [];
then
...
else
..
fi
지금까지 Linux syntax error: unexpected end of file 오류 해결 방법에 대한 포스팅이였습니다.
반응형
'Develope > Linux' 카테고리의 다른 글
[Linux] CentOS7에서 python 패키지 수동 설치 방법 (0) | 2022.05.12 |
---|---|
[Linux] CentOS7에서 python version upgrade 방법 (2) | 2022.04.06 |
[Linux] 패키지.rpm 파일 다운로드 및 설치 방법 (0) | 2022.04.01 |
[Linux] SELinux is preventing {directory} from read access on the file {filename}오류 해결 방법 (0) | 2022.03.31 |
[Linux] No route to host 오류 해결 방법 (0) | 2022.03.21 |