Skip to content

Instantly share code, notes, and snippets.

@icedream
Last active June 9, 2017 09:27
Show Gist options
  • Save icedream/a31cb576b322d2f9947f7ffc83840972 to your computer and use it in GitHub Desktop.
Save icedream/a31cb576b322d2f9947f7ffc83840972 to your computer and use it in GitHub Desktop.
Get deb dependencies for an executable or library file

Before you can use this, you need to

  • install apt-file via apt-get install -y apt-file
  • at least have populated the database once via apt-file update
#!/bin/sh
exec ldd "$@" |\
grep -o '=> [^ ]\+' |\
awk '{print $2}' |\
while read file; do
apt-file search -l -F $file
done |\
sort |\
uniq -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment