freebsd-dev/gnu/usr.bin/as/testscripts/dostriptest
1999-08-27 23:37:10 +00:00

16 lines
123 B
Bash
Executable File

#!/bin/sh
# $FreeBSD$
x=striptest.xx.$$
y=striptest.yy.$$
cp $1 $x
strip $x
cp $2 $y
strip $y
doobjcmp $x $y
exit
#eof