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
'Web Programming' 카테고리의 다른 글
[linux] 파일 원격으로 가져오기 (feat. scp) (0) | 2021.05.26 |
---|---|
[postgresql] Ubuntu에서 postgresql 설치하고 외부 접속 열어주기 (0) | 2021.03.19 |
[Ubuntu] Ubuntu에 redis 설치하고 포트 열어주기 (0) | 2021.03.19 |
[postgresql] postgresql 명령어 모음 (0) | 2021.03.16 |
[postgresql] Mac에서 Postgresql 설치 하기 (0) | 2021.03.09 |