Skip to content

Instantly share code, notes, and snippets.

@sidorovit
Forked from clarkli86/ldd_awk.sh
Created March 22, 2024 13:17
Show Gist options
  • Select an option

  • Save sidorovit/09204fe138c20b881597aab266276726 to your computer and use it in GitHub Desktop.

Select an option

Save sidorovit/09204fe138c20b881597aab266276726 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