1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00
Files
postgres/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 {} \;