16 lines
165 B
Plaintext
16 lines
165 B
Plaintext
|
#!/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
|