xref: /netbsd/distrib/sun2/ramdisk/Findrefs (revision 6550d01e)
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