Created
July 29, 2022 04:25
-
-
Save ktbarrett/252e49828a84582e35b6a403b224ada7 to your computer and use it in GitHub Desktop.
Like tee, but just on stderr
This file contains 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 logerr { | |
file="$1" | |
shift 1 | |
"$@" 2> >(tee "$file" >&2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment