1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-10 14:22:35 +03:00
Files
postgres/src/tools/make_diff/cporig
2010-09-20 22:08:53 +02:00

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