Skip to content

Instantly share code, notes, and snippets.

@allenhsu
Created August 20, 2014 04:36
Show Gist options
  • Save allenhsu/af05cac326ee8e2a3e8a to your computer and use it in GitHub Desktop.
Save allenhsu/af05cac326ee8e2a3e8a to your computer and use it in GitHub Desktop.
List licenses of used pods
pcregrep -o1 "pod '([^'/]*)[^']*'" Podfile|while read line ; do echo "\n\n==========\n$line\n==========" ; pod spec cat $line|grep license -A3 ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment