14 lines
111 B
Bash
Executable file
14 lines
111 B
Bash
Executable file
#!/bin/sh
|
|
|
|
x=striptest.xx.$$
|
|
y=striptest.yy.$$
|
|
|
|
cp $1 $x
|
|
strip $x
|
|
cp $2 $y
|
|
strip $y
|
|
|
|
doobjcmp $x $y
|
|
exit
|
|
|
|
#eof
|