Files
postgresql/src/tools/make_diff/rmorig
2010-09-20 22:08:53 +02:00

10 lines
135 B
Bash
Executable File

#!/bin/sh
# src/tools/make_diff/rmorig
if [ "$#" -eq 0 ]
then APATH="."
else APATH="$1"
fi
find $APATH -name '*.orig' -exec rm {} \;