1#!/bin/sh 2 3# Small helper to find out who pulls in X 4 5[ "$1" ] || { echo "$0: match_string" ; exit 1; } 6 7for f in *.lo 8do 9 nm -p $f | grep "$1" && echo $f 10done 11 12