8 lines
158 B
Plaintext
8 lines
158 B
Plaintext
|
#!/bin/sh
|
||
|
if test "$verbose" = yes; then
|
||
|
echo "tryassemble: $aspp -o tst $*" >&2
|
||
|
$aspp -o tst $* || exit 100
|
||
|
else
|
||
|
$aspp -o tst $* 2> /dev/null || exit 100
|
||
|
fi
|