16 lines
165 B
Bash
Executable File
16 lines
165 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: dostriptest,v 1.1 1993/10/02 21:01:09 pk Exp $
|
|
|
|
x=striptest.xx.$$
|
|
y=striptest.yy.$$
|
|
|
|
cp $1 $x
|
|
strip $x
|
|
cp $2 $y
|
|
strip $y
|
|
|
|
doobjcmp $x $y
|
|
exit
|
|
|
|
#eof
|