check if dir exist sh code example
Example: shell script to check the directory exists
Directory="/opt"
if [ -d "$Directory" ];
then
echo -e "it's exits\n"
fi
### To check if it's not exists
if [ ! -d "$Directory" ];
then
echo -e "It's not there\n"
fi