File: clean_python

package info (click to toggle)
nicotine 1.2.9%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,152 kB
  • ctags: 2,358
  • sloc: python: 26,106; ansic: 312; makefile: 69; sh: 37
file content (5 lines) | stat: -rwxr-xr-x 128 bytes parent folder | download | duplicates (3)
1
2
3
4
5
#!/bin/sh
find ./ -iname "*.pyc" -exec rm {} \;
find ./ -iname "*~"    -exec rm {} \;
find ./ -iname "*.bak"    -exec rm {} \;