Skip to content

Instantly share code, notes, and snippets.

@munho
Created August 29, 2017 02:22
Show Gist options
  • Select an option

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

Select an option

Save munho/e296906ec42b71e673fb6bbee6b86509 to your computer and use it in GitHub Desktop.
for $dirs 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
# install_all_pods.sh
# https://github.com/CosmicMind/Samples.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment