Skip to content

Instantly share code, notes, and snippets.

@RaidoS
Created April 19, 2017 02:52
Show Gist options
  • Save RaidoS/89de153eaae5437310fb81aac43d58bc to your computer and use it in GitHub Desktop.
Save RaidoS/89de153eaae5437310fb81aac43d58bc to your computer and use it in GitHub Desktop.
shell commands
// remove .pyc files
rm -r *.pyc
// recursive
find . -name "*.pyc" -exec rm -f {} \;
// http://stackoverflow.com/questions/785519/how-do-i-remove-all-pyc-files-from-a-project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment