#!/bin/sh -efu while IFS=$'\t' read -r f t; do case "$t" in *ELF*' shared object'*) echo "$f" ;; esac done