1 #!/bin/sh 2 # $NetBSD: Findrefs,v 1.1 2001/05/18 00:16:40 fredette Exp $ 3 4 # Small helper to find out who pulls in X 5 6 [ "$1" ] || { echo "$0: match_string" ; exit 1; } 7 8 for f in *.lo 9 do 10 nm -p $f | grep "$1" && echo $f 11 done 12 13
Indexes created Fri Sep 26 20:09:58 GMT 2025