RedJini Blog

뒤로 검색

[shell script] directory exists check

2013/11/20 18:40

#!/bin/sh
if [ -d "$DIRECTORY" ]; then
     echo "$DIRECTORY exists." 
fi

#!/bin/sh
if [ ! -d "$DIRECTORY" ]; then
    echo "$DIRECTORY doesn't exists." 
fi

#!/bin/sh
if [ -L "$DIRECTORY" ]; then
    echo "$DIRECTORY symbolic link" 
fi 

Tags

Directory, exists, Linux, script, shell
이 페이지는 Textcube 1.9.3 : poco a poco 로 구동됩니다 데스크탑 화면