Skip to content

Instantly share code, notes, and snippets.

@troglobit
Last active May 12, 2023 14:17
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 troglobit/67b5942ad9327311eafe88241bb2a899 to your computer and use it in GitHub Desktop.
Save troglobit/67b5942ad9327311eafe88241bb2a899 to your computer and use it in GitHub Desktop.
Shell Scripting Tips

Debug a script callback to console

exec >/dev/console 2>&1
set -x

Ignore error on a particular line in set -e

possibly-failing-command ||:

Redirect STDERR to STDOUT

some-command 2>&1 > log-all-output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment