mirror of
https://github.com/postgres/postgres.git
synced 2026-04-10 19:47:07 -04:00
9 lines
194 B
Bash
Executable file
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 {} \;
|