mirror of
https://github.com/postgres/postgres.git
synced 2026-02-26 11:21:03 -05:00
9 lines
135 B
Bash
Executable file
9 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 {} \;
|