dostriptest 111 B

1234567891011121314
  1. #!/bin/sh
  2. x=striptest.xx.$$
  3. y=striptest.yy.$$
  4. cp $1 $x
  5. strip $x
  6. cp $2 $y
  7. strip $y
  8. doobjcmp $x $y
  9. exit
  10. #eof