Skip to content

Instantly share code, notes, and snippets.

@Luukdegram
Created March 22, 2016 09:18
Show Gist options
  • Select an option

  • Save Luukdegram/383fb3bdfc63ce1cfd0a to your computer and use it in GitHub Desktop.

Select an option

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