mirror of
https://github.com/postgres/postgres.git
synced 2026-03-27 04:44:15 -04:00
8 lines
111 B
Text
Executable file
8 lines
111 B
Text
Executable file
:
|
|
for FILE
|
|
do
|
|
if [ ! -f "$FILE.orig" ]
|
|
then cp $FILE $FILE.orig
|
|
else echo "$FILE.orig exists" 1>&2
|
|
fi
|
|
done
|