check if directory exists bash code example
Example 1: linux command if directory exists
DIR="/etc/httpd/"
if [ -d "$DIR" ]; then
echo "Installing config files in ${DIR}..."
else
echo "Error: ${DIR} not found. Can not continue."
exit 1
fi
Example 2: shell script to check the directory exists
Directory="/opt"
if [ -d "$Directory" ];
then
echo -e "it's exits\n"
fi
if [ ! -d "$Directory" ];
then
echo -e "It's not there\n"
fi
Example 3: linux shell check if directory does not exists
if [ ! -d directory ]; then
mkdir directory
fi