반응형
다음은 linux의 bash shell script에서 directory 또는 file의존재 여부를 확인하는 방법입니다.
만약 첫번째 줄에서 에러가 발생한다면 삭제하고 실행하면 됩니다.
#!/bin/bash
# 디렉토리 존재 유무 확인
if [ ! -d 디렉토리명 ] ; then
mkdir 디렉토리명
fi
# 파일 존재 유무 확인
if [ ! -e 디렉토리명 ] ; then
touch 파일명
fi
728x90
반응형
'OS > Linux' 카테고리의 다른 글
CentOS 7 / Redhat 7 repository 등록하는방법 (0) | 2023.06.15 |
---|---|
[RedHat, CentOS] shell에서 환경변수 설정이 적용되지 않는 문제 해결 방법(do not work source command in shell script) (0) | 2023.05.21 |
CentOS - Could not resolve host error 해결 방법 (0) | 2022.02.27 |
centos(linux) 네트워크 프린터로 출력 (0) | 2021.11.26 |
[yum error] Another app is currently holding the yum lock; waiting for it to exit (0) | 2021.09.23 |