shell script (bash) 에서 file 유무 체크하는 방법과 파일 존재 검사 옵션 (file exist check)
shell script (bash) 에서 file 유무 체크하는 방법과 파일 존재 검사 옵션 (file exist check) ubuntu linux 에서 shell script 를 사용하다보면 파일의 유무를 확인해야 하는 경우가 자주 있습니다. 이럴 때 사용할 수 있는 방법은 조건문에서 특별한 옵션을 사용하는 것 입니다. 기본 문법은 아래와 같습니다. if [ -f "$FILENAME" ] ; then echo "file exist" else echo "file not exist" fi -b FILE 파일이 존재하고 특별한 파일인지 체크 FILE exists and is block special -c FILE 파일이 존재하고 특수문자가 있는지 체크 FILE exists and is character s..
Study/ShellScript
2014. 9. 18. 00:30