Skip to content

Instantly share code, notes, and snippets.

@chutaicho
Created December 8, 2013 21:25
Show Gist options
  • Save chutaicho/7863970 to your computer and use it in GitHub Desktop.
Save chutaicho/7863970 to your computer and use it in GitHub Desktop.
A quick shell-script for removing all Build and DerivedData. Put this into your projects' root or wherever you like, then execute with Terminal.
#!/bin/sh
find . -name "build" -print -exec rm -rf {} ";"
find . -name "DerivedData" -print -exec rm -rf {} ";"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment