repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
distrib
/
sun3
/
ramdisk
/
Findrefs
blob
8aff8129cbb2c61c487814566fad20a67684d080
1
#!/bin/sh
2
# $NetBSD$
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