File: clean_python

package info (click to toggle)
nicotine 1.2.14%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 7,224 kB
  • ctags: 2,816
  • sloc: python: 24,766; ansic: 260; makefile: 70; sh: 46
file content (6 lines) | stat: -rwxr-xr-x 166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
#!/bin/sh
find ./ -iname "*.pyc" -exec rm {} \;
find ./ -iname "*.pyo" -exec rm {} \;
find ./ -iname "*~"    -exec rm {} \;
find ./ -iname "*.bak"    -exec rm {} \;