Skip to content

Instantly share code, notes, and snippets.

@jafish
Last active November 13, 2021 20:48
Show Gist options
  • Save jafish/e5202439f6e8c324d05028059343362d to your computer and use it in GitHub Desktop.
Save jafish/e5202439f6e8c324d05028059343362d to your computer and use it in GitHub Desktop.
macOS Shell Script to Cleanup Unity Project Folders
cd "$1"
find -E . -regex "./[Ll]ibrary|./[Tt]emp|./[Oo]bj|./[Bb]uilds*|./[Ll]ogs|./[Uu]ser[Ss]ettings|./\.vs.*|./.*.sln|./.*.csproj|./.*mono_crash.*|./.*.DS_Store" -prune -exec rm -rf "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment