Skip to content

Instantly share code, notes, and snippets.

@telatin
Created June 22, 2021 10:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save telatin/0c544c59a74a2d67694021048d118411 to your computer and use it in GitHub Desktop.
Save telatin/0c544c59a74a2d67694021048d118411 to your computer and use it in GitHub Desktop.
Bash function to print a string to STDERR
#Function to print to STDERR
echoerr() { echo "$@" 1>&2; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment