Skip to content

Instantly share code, notes, and snippets.

@Hconk
Created October 10, 2019 02:03
Show Gist options
  • Save Hconk/a3632f79f2c6db6a9d4c9a26856236c9 to your computer and use it in GitHub Desktop.
Save Hconk/a3632f79f2c6db6a9d4c9a26856236c9 to your computer and use it in GitHub Desktop.
linux 下拷贝程序所有依赖的so
#!/bin/bash
deplist=$( ldd $1 | awk '{if (match($3,"/")){ print $3}}' )
cp $deplist $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment