Skip to content

Instantly share code, notes, and snippets.

@syguer
Last active December 24, 2015 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syguer/6788245 to your computer and use it in GitHub Desktop.
Save syguer/6788245 to your computer and use it in GitHub Desktop.
Create directory when directory doesn't exist
if [ ! -d "DIR_NAME" ]; then mkdir "DIR_NAME";fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment