1#!/bin/sh 2 3# Small helper to print out symbols in a useful order. 4 5nm -n rd_bin.syms |grep -i ' a ' 6nm -n rd_bin.syms |grep -i ' t ' 7nm -n rd_bin.syms |grep -i ' d ' 8nm -n rd_bin.syms |grep -i ' b ' 9nm -p rd_bin.syms |grep -i ' c ' 10