diff options
author | rsc <devnull@localhost> | 2003-11-23 18:29:08 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-11-23 18:29:08 +0000 |
commit | dbd7b9a97eede27e707a279114305d7591d371fc (patch) | |
tree | 90e45fcce18ff109010d61f2d4fccb7d840302c4 /bin/label | |
parent | 97a5e5f2dd40eff09cb650c91c21f680b6d4206a (diff) | |
download | plan9port-dbd7b9a97eede27e707a279114305d7591d371fc.tar.gz plan9port-dbd7b9a97eede27e707a279114305d7591d371fc.tar.bz2 plan9port-dbd7b9a97eede27e707a279114305d7591d371fc.zip |
various shell script fixes.
add 9a, 9c, 9l wrapper scripts.
label sets label on xterm/9term
Diffstat (limited to 'bin/label')
-rwxr-xr-x | bin/label | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/label b/bin/label new file mode 100755 index 00000000..e8e3e8b0 --- /dev/null +++ b/bin/label @@ -0,0 +1,7 @@ +#!/bin/sh + +label() { + echo "$@" | awk '{printf("\033];%s\007", $0);}' +} + +label "$@" |