dounssym 246 B

12345678
  1. #!/bin/sh
  2. # objdump the symbol table, but strip off the headings and symbol
  3. # numbers and sort the result. Intended for use in comparing symbol
  4. # tables that may not be in the same order.
  5. objdump +symbols +omit-symbol-numbers $1 \
  6. | sort
  7. #eof