This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/dist-gpc.sh

18 lines
434 B
Bash
Raw Normal View History

#!/bin/sh
# Create a archive 'gpc*.zip' with configuration files examples.
2005-11-06 12:51:16 +00:00
date=`date +%Y%m%d`
shortdate=`echo ${date} | sed s/^...//`
shortname=../gpc${shortdate}.zip
2005-11-26 01:29:49 +00:00
name=../gpc115-${date}.zip
2005-11-06 12:51:16 +00:00
dir=cfgs
2006-02-18 14:08:47 +00:00
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}
2010-03-14 18:44:24 +00:00
ln ${name} ${shortname} || cp ${name} ${shortname}