diff options
author | Russ Cox <rsc@swtch.com> | 2009-05-05 07:06:07 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2009-05-05 07:06:07 -0700 |
commit | 3625f268527a3106714e5aa6fd0d6b396854309c (patch) | |
tree | 167d116642181f3cb078c5bae08d98aa5bf91f71 | |
parent | 833c88d4daf56ac61d915901dec23f81c0f5f444 (diff) | |
download | plan9port-3625f268527a3106714e5aa6fd0d6b396854309c.tar.gz plan9port-3625f268527a3106714e5aa6fd0d6b396854309c.tar.bz2 plan9port-3625f268527a3106714e5aa6fd0d6b396854309c.zip |
label: write to /dev/tty to avoid redirections
-rwxr-xr-x | bin/label | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ SunOS) esac label() { - echo "$@" | $awk '{printf("\033];%s\007", $0);}' + echo "$@" | $awk '{printf("\033];%s\007", $0);}' >/dev/tty } label "$@" |