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