Skip to content

Instantly share code, notes, and snippets.

@shout-poor
Created August 16, 2017 00: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 shout-poor/3a3e523060221958c6ec6f9576cebb49 to your computer and use it in GitHub Desktop.
Save shout-poor/3a3e523060221958c6ec6f9576cebb49 to your computer and use it in GitHub Desktop.
Shellscript code snipets
# Make a temporary dir, and remove when exit.
TEMPDIR=$(mktemp -d)
trap "rm -rf ${TEMPDIR}" EXIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment