home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / ecoff-cmp < prev    next >
Text File  |  1991-01-07  |  248b  |  13 lines

  1. #!/bin/sh
  2. #
  3. #    ecoff-cmp file1.o file2.o
  4. #
  5. cp $1 /tmp/foo1.$$
  6. cp $2 /tmp/foo2.$$
  7. strip /tmp/foo1.$$
  8. strip /tmp/foo2.$$
  9. tail +10c /tmp/foo1.$$ > /tmp/foo3.$$
  10. tail +10c /tmp/foo2.$$ > /tmp/foo4.$$
  11. cmp /tmp/foo3.$$ /tmp/foo4.$$
  12. rm -f /tmp/foo[1234].$$
  13.