Revision 4421
Added by Aaron Marcuse-Kubitza over 12 years ago
bin/cc_tty | ||
---|---|---|
1 |
#!/bin/sh |
|
2 |
# Runs a command, copying stderr to the TTY |
|
3 |
# Usage: self command args... |
|
4 |
|
|
5 |
"$@" 3>&2 2>&1 1>&3|tee /dev/tty 3>&2 2>&1 1>&3 |
|
0 | 6 |
Also available in: Unified diff
Added cc_tty