Skip to content

Instantly share code, notes, and snippets.

@Luukdegram
Created March 22, 2016 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Luukdegram/383fb3bdfc63ce1cfd0a to your computer and use it in GitHub Desktop.
Save Luukdegram/383fb3bdfc63ce1cfd0a to your computer and use it in GitHub Desktop.
Shell script to unpack all static libraries within current directory
for i in *.a; do
$(ar -x $i)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment