bash 에서 directory 존재 여부를 검사하여 만약 존재하는 폴더를 삭제하는 방법입니다
1. 간단한 방법
`[ -d test ] && rm -r test`
2. 조금은 길지만 이해는 쉬운 방법
if [ -d directory/path to a directory ] ; then
FILE_EXISTED = `rm -r test`
fi
'Tools > Linux 관리' 카테고리의 다른 글
[samba] Samba Server 의 IP 자체를 찾지 못할 때 점검 사항 (0) | 2015.06.13 |
---|---|
[Linux] Deb 파일 풀기 (Extract package.deb file) (0) | 2015.04.15 |
ubutu package download 위치 확인 및 offline 설치 방법 (0) | 2014.12.04 |
Ubuntu Trouble Shoot (0) | 2014.12.04 |
Ubuntu Architecture 확인 방법 (0) | 2014.12.04 |