Here’s a quirk that I noticed, while coding today. Was writing a function to test if a directory exists, and to make the directory doesn’t exist. Shell offers the test command, used with an if statement, to solve this. Here’s what I wrote:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ ! -d “/path/to/dir” ] ; then | |
mkdir -p /path/to/dir; | |
echo “Directory did not exist. Created”; | |
fi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -d “/path/to/dir” ] ; then | |
#do nothing | |
else | |
mkdir -p /oath/to/dir; | |
echo “Directory did not exist. Created”; | |
fi; |