f test -f './test_file.sh'; then echo "File Exist !!!"; fi // test 명령어 대신 [], [[]] 기호 사용 가능 if [ -f ./test_file.sh ]; then echo "File Exist !!!"; fi // 파일 없을 때 if [ ! -f ./test_file.sh ]; then echo "Not Exists"; fi // 디렉토리 존재 여부 if [ -d ./abc ]; then echo "Directory Found !!!"; fi