From be2491b093b1f0ca430bede679ecbb670041e483 Mon Sep 17 00:00:00 2001 From: cassio Date: Tue, 2 Jul 2013 09:46:45 +0400 Subject: restructuring of boca's git --- tools/makebkp.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 tools/makebkp.sh (limited to 'tools/makebkp.sh') diff --git a/tools/makebkp.sh b/tools/makebkp.sh new file mode 100755 index 0000000..5a99c8a --- /dev/null +++ b/tools/makebkp.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +for i in zip du find cut; do + p=`which $i` + if [ -x "$p" ]; then + echo -n "" + else + echo "$i" not found + exit 1 + fi +done + +ex=`which singlefilebkp.sh` +if [ "$ex" = "" ]; then + ex=/var/www/boca/tools/singlefilebkp.sh +fi + +if [ -x "$ex" ]; then + zip /tmp/bkp.zip `find $cdir -name "*.c"` `find $cdir -name "*.java"` `find $cdir -name "*.cpp"` `find $cdir -name "*.in"` + if [ ! -f /tmp/bkp.zip ]; then + echo "Nothing to backup" + else + size=`du -s /tmp/bkp.zip | cut -f1` + if [ "$size" -gt 100000 ]; then + echo Bkp is already too large. BACKUP ABORTED + else + $ex /tmp/bkp.zip + fi + fi +else + echo Bkp script not found or is not executable +fi -- cgit v1.2.3