Skip to content

Instantly share code, notes, and snippets.

@bergpb
Created August 16, 2019 17:28
Show Gist options
  • Select an option

  • Save bergpb/8eddff252bd5f146d5d5a1d208bbe0e6 to your computer and use it in GitHub Desktop.

Select an option

Save bergpb/8eddff252bd5f146d5d5a1d208bbe0e6 to your computer and use it in GitHub Desktop.
Remove __pycache__ folders
echo "Removing __pycache__ folders"
find . -name __pycache__ -type d -exec rm -rf {} \;
find ./app/* -name __pycache__ -type d -exec rm -rf {} \;
echo "Ok!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment