Created
June 22, 2021 10:10
-
-
Save telatin/0c544c59a74a2d67694021048d118411 to your computer and use it in GitHub Desktop.
Bash function to print a string to STDERR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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