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
9 lines
132 B
Bash
Executable file
9 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# != 1 ]; then
|
|
echo 'usage: 9a file.s' 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
out=`echo $1 | sed 's/\.s$//;s/$/.o/'`
|
|
exec as -o $out $1
|