1
0
Fork 0
mirror of https://github.com/9fans/plan9port.git synced 2025-01-15 11:20:03 +00:00
plan9port/bin/label
2004-03-31 01:01:24 +00:00

16 lines
144 B
Bash
Executable file

#!/bin/sh
case `uname` in
SunOS)
awk=nawk
;;
*)
awk=awk
;;
esac
label() {
echo "$@" | $awk '{printf("\033];%s\007", $0);}'
}
label "$@"