18 lines
434 B
Bash
Executable File
18 lines
434 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Create a archive 'gpc*.zip' with configuration files examples.
|
|
|
|
date=`date +%Y%m%d`
|
|
shortdate=`echo ${date} | sed s/^...//`
|
|
shortname=../gpc${shortdate}.zip
|
|
name=../gpc115-${date}.zip
|
|
|
|
dir=cfgs
|
|
|
|
echo Build an archive with Golded+ configuration examples: ${name} and ${shortname}
|
|
|
|
if [ -f ${name} ] ; then rm $name ; fi
|
|
|
|
find ${dir} | grep -v CVS | zip -9 -@ -X ${name}
|
|
ln ${name} ${shortname} || cp ${name} ${shortname}
|