Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Last active March 24, 2019 06:16
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 miguelmota/b4731416a1b38853759be197a734d221 to your computer and use it in GitHub Desktop.
Save miguelmota/b4731416a1b38853759be197a734d221 to your computer and use it in GitHub Desktop.
Bash pipe to file descriptor 3
# not supported by all platforms
command | tee /dev/fd/3
# cross-platform compatible using process substitution (recommended)
command > >(tee >(cat >&3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment