Answers for "folder exists bash"

15

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
Posted by: Guest on December-31-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language