mirror of
https://github.com/postgres/postgres.git
synced 2025-12-10 14:22:35 +03:00
12 lines
150 B
Bash
Executable File
12 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
|