Home | History | Annotate | Line # | Download | only in ramdisk
Showsyms revision 1.2.6.1
      1      1.1  gwr #!/bin/sh
      2  1.2.6.1  gwr # $NetBSD: Showsyms,v 1.2.6.1 1996/09/13 20:22:49 gwr Exp $
      3      1.1  gwr # Small helper to print out symbols in a useful order.
      4      1.1  gwr 
      5  1.2.6.1  gwr tf=_tmp$$
      6  1.2.6.1  gwr 
      7  1.2.6.1  gwr nm -n rd_bin.syms | egrep -v ' (gcc2|___gnu)_compiled' > $tf
      8  1.2.6.1  gwr 
      9  1.2.6.1  gwr grep -i ' u ' $tf
     10  1.2.6.1  gwr grep -i ' a ' $tf
     11  1.2.6.1  gwr grep -i ' t ' $tf
     12  1.2.6.1  gwr grep -i ' d ' $tf
     13  1.2.6.1  gwr grep -i ' b ' $tf
     14  1.2.6.1  gwr rm -f $tf
     15  1.2.6.1  gwr 
     16  1.2.6.1  gwr nm -p rd_bin.syms | grep -i ' c '
     17