mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
10 lines
132 B
Text
10 lines
132 B
Text
|
#!/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
|