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