postgresql/src/tools/make_diff/rmorig
2006-03-11 04:38:42 +00:00

9 lines
194 B
Bash
Executable file

#!/bin/sh
# $PostgreSQL: pgsql/src/tools/make_diff/rmorig,v 1.2 2006/03/11 04:38:42 momjian Exp $
if [ "$#" -eq 0 ]
then APATH="."
else APATH="$1"
fi
find $APATH -name '*.orig' -exec rm {} \;