Skip to content

Instantly share code, notes, and snippets.

@PaulChana
Created January 17, 2018 09:33
Show Gist options
  • Save PaulChana/c1da5b30e0b4fb35fc44fd3f97976715 to your computer and use it in GitHub Desktop.
Save PaulChana/c1da5b30e0b4fb35fc44fd3f97976715 to your computer and use it in GitHub Desktop.
[Override echo] Override echo for debugging #bash #shell
run_mode=debug
echo ()
{
[[ "$run_mode" ]] && builtin echo $@
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment