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