-
-
Save ormaaj/0f7801aad6d1c7c153df to your computer and use it in GitHub Desktop.
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
_jshon() { | |
shopt -s lastpipe | |
typeset input status | |
{ tee /dev/fd/3 | jshon "$@" >&4; } 3>&1 | |
input=$(</dev/fd/0) | |
((PIPESTATUS[0])) && printf %s "$input" >&2 | |
return "${PIPESTATUS[0]}" | |
} 4>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment