add a small script to clean up all those damn files that patch leaves lying around

This commit is contained in:
Hazim Gazov
2010-08-15 12:12:36 +00:00
parent 9c9b394862
commit 7d74b8cdfb

6
cleanup-patch-crap.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
#clean up files left over from a patching session
#only run right before you commit!
find . -name "*.orig" | xargs rm
find . -name "*.rej" | xargs rm