8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#!/bin/sh -efu
|
|
while IFS=$'\t' read -r f t; do
|
|
case "$t" in
|
|
*ELF*' shared object'*)
|
|
echo "$f" ;;
|
|
esac
|
|
done
|