[shell script] directory exists check

#!/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 

2013/11/20 18:40 2013/11/20 18:40
글 걸기 주소 : 이 글에는 트랙백을 보낼 수 없습니다