mirror of
https://github.com/postgres/postgres.git
synced 2026-02-24 18:37:22 -05:00
11 lines
209 B
Bash
Executable file
11 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
|