xref: /netbsd-src/distrib/sun2/ramdisk/Findrefs (revision 75c4ef5d8d3142918825d3d2be97fcbb27e7ec83)
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
8for f in *.lo
9do
10	nm -p $f | grep "$1" && echo $f
11done
12
13