mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# $PostgreSQL: pgsql/src/tools/make_diff/cporig,v 1.2 2006/03/11 04:38:42 momjian Exp $
|
|
|
|
for FILE
|
|
do
|
|
if [ ! -f "$FILE.orig" ]
|
|
then cp $FILE $FILE.orig
|
|
else echo "$FILE.orig exists" 1>&2
|
|
fi
|
|
done
|