mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
dbd7b9a97e
add 9a, 9c, 9l wrapper scripts. label sets label on xterm/9term
7 lines
84 B
Bash
Executable file
7 lines
84 B
Bash
Executable file
#!/bin/sh
|
|
|
|
label() {
|
|
echo "$@" | awk '{printf("\033];%s\007", $0);}'
|
|
}
|
|
|
|
label "$@"
|