mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
16 lines
118 B
Plaintext
16 lines
118 B
Plaintext
|
#!/bin/sh
|
||
|
# $Id$
|
||
|
|
||
|
x=striptest.xx.$$
|
||
|
y=striptest.yy.$$
|
||
|
|
||
|
cp $1 $x
|
||
|
strip $x
|
||
|
cp $2 $y
|
||
|
strip $y
|
||
|
|
||
|
doobjcmp $x $y
|
||
|
exit
|
||
|
|
||
|
#eof
|