mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
15 lines
111 B
Plaintext
15 lines
111 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
x=striptest.xx.$$
|
||
|
y=striptest.yy.$$
|
||
|
|
||
|
cp $1 $x
|
||
|
strip $x
|
||
|
cp $2 $y
|
||
|
strip $y
|
||
|
|
||
|
doobjcmp $x $y
|
||
|
exit
|
||
|
|
||
|
#eof
|