10 lines
340 B
Bash
10 lines
340 B
Bash
#!/bin/sh
|
|
# ----------------------------------------------------------
|
|
# find-provides for FreeBSD >= 3.3
|
|
# ----------------------------------------------------------
|
|
filelist=$(grep "\\.so" | grep -v "^/lib/ld.so" | xargs file -L 2>/dev/null | grep "ELF.*shared" | cut -d: -f1)
|
|
|
|
for f in $filelist; do
|
|
echo ${f##*/}
|
|
done | sort -u
|