Skip to content

Instantly share code, notes, and snippets.

@clarkli86
Created March 16, 2016 02:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save clarkli86/758c713de81e7dddac4c to your computer and use it in GitHub Desktop.
Save clarkli86/758c713de81e7dddac4c to your computer and use it in GitHub Desktop.
Copy all shared libraries for a binary to directory
ldd file | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' /destination
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment