blob: f2984ffbafbaa9c719e03c97e0ceaf98d61100f2 [file] [log] [blame]
rscdbd7b9a2003-11-23 18:29:08 +00001#!/bin/sh
2
3if [ $# != 1 ]; then
4 echo 'usage: 9a file.s' 1>&2
5 exit 1
6fi
7
8out=`echo $1 | sed 's/\.s$//;s/$/.o/'`
9exec as -o $out $1