Shell/Bash: shell script to check the directory exists Example
Shell/Bash Example: This is the "shell script to check the directory exists" Example. compiled from many sources on the internet by SimpleTutorials.org
linux command if directory exists
DIR="/etc/httpd/" if [ -d "$DIR" ]; then ### Take action if $DIR exists ### echo "Installing config files in ${DIR}..." else ### Control will jump here if $DIR does NOT exists ### echo "Error: ${DIR} not found. Can not continue." exit 1 fi
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
* Summary: This "shell script to check the directory exists" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!