mirror of
https://github.com/postgres/postgres.git
synced 2026-02-24 10:25:42 -05:00
11 lines
150 B
Bash
Executable file
11 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# src/tools/make_diff/cporig
|
|
|
|
for FILE
|
|
do
|
|
if [ ! -f "$FILE.orig" ]
|
|
then cp $FILE $FILE.orig
|
|
else echo "$FILE.orig exists" 1>&2
|
|
fi
|
|
done
|