Skip to content

Instantly share code, notes, and snippets.

@munho
Created April 18, 2017 22:51
Show Gist options
  • Select an option

  • Save munho/a1d8ad6e2462260531abaa3da5e42717 to your computer and use it in GitHub Desktop.

Select an option

Save munho/a1d8ad6e2462260531abaa3da5e42717 to your computer and use it in GitHub Desktop.
install_all_pods.sh
dirs=$(find . -name Podfile -print0 | xargs -0 -n1 dirname | sort --unique)
top=$(pwd)
for dir in $dirs
do
cd "$dir"
pod install
cd "$top"
done
# https://github.com/CosmicMind/Samples.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment