mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 22:57:40 +08:00
10 lines
135 B
Bash
Executable File
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 {} \;
|