diff --git a/cleanup-patch-crap.sh b/cleanup-patch-crap.sh new file mode 100755 index 000000000..c9769fb69 --- /dev/null +++ b/cleanup-patch-crap.sh @@ -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