Skip to content

Instantly share code, notes, and snippets.

@kckrinke
Created September 25, 2015 23:40
Show Gist options
  • Save kckrinke/237d62c827a1283203d2 to your computer and use it in GitHub Desktop.
Save kckrinke/237d62c827a1283203d2 to your computer and use it in GitHub Desktop.
List missing ldd files
#!/bin/bash
sudo ldconfig -p \
| grep "=>" \
| perl -pe 's!^.*\=\>\s(.+?)\s*$!$1\n!' \
| while read SO; do [ ! -f "${SO}" ] && echo "missing: ${SO}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment