16 lines
123 B
Bash
Executable File
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
|