Linux : find out if a dir exist or not
for linux command line, do
$ [ -d /tmp] && echo 'dir /tmp not found'
then if /tmp not found, it's will display "dir /tmp not found".
$ [ -d /tmp] && echo 'dir /tmp not found'
then if /tmp not found, it's will display "dir /tmp not found".
Comments
Post a Comment