Skip to content

Instantly share code, notes, and snippets.

@cole-h

cole-h/a.nix Secret

Created January 7, 2021 19:06
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 cole-h/82035ff5f1629713f91baced7a5ad4c6 to your computer and use it in GitHub Desktop.
Save cole-h/82035ff5f1629713f91baced7a5ad4c6 to your computer and use it in GitHub Desktop.
{
somescript =
# this will show everything bash is executing and print out "hi"
''
set -x
echo hi
''
# this will echo "hi" into /dev/null
+ ''
echo hi > /dev/null
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment