Findrefs revision 1.1
11.1Sgwr#!/bin/sh
21.1Sgwr
31.1Sgwr# Small helper to find out who pulls in X
41.1Sgwr
51.1Sgwr[ "$1" ] || { echo "$0: match_string" ; exit 1; }
61.1Sgwr
71.1Sgwrfor f in *.lo
81.1Sgwrdo
91.1Sgwr	nm -p $f | grep "$1" && echo $f
101.1Sgwrdone
111.1Sgwr
12