File:  [Repository] / foxridge-archiver / archivemany.sh
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Fri Sep 23 17:16:16 2005 UTC (18 years, 8 months ago) by casties
Branches: MAIN
CVS tags: HEAD
added count in archivemany
removed abort on wrong user in archiver (problem with screen)

#!/bin/bash

VERSION="archivemany V0.2 (23.9.2005 ROC)"

#set -x

if [ -z "$1$2" ]
then
    echo $VERSION
    echo "use: $0 docdir dirlist"
    echo "  Archives the directories given in the file dirlist inside docdir."
    exit 1
fi

BASEDIR="$1"
DIRLIST="$2"
PARAM="$3"
CNT="1"

if [ ! -d $BASEDIR ]
then
    echo "ERROR: base directory $BASEDIR not found!"
    exit 1
fi

if [ ! -f $DIRLIST ]
then
    echo "ERROR: directory list file $DIRLIST not found!"
    exit 1
fi

cat $DIRLIST | while read DIR
do
    if [ -d "$BASEDIR/$DIR" ]
    then
	echo "archiving document $CNT: $DIR..."
	if /usr/local/mpiwg/archive/archiver "$PARAM" "$BASEDIR/$DIR"
	then
	    echo "  done on `date`"
	else
	    echo "FAILED!"
	    # abort?
	fi
    else
	echo "ERROR: document directory $BASEDIR/$DIR not found!"
    fi
    CNT=$(( $CNT + 1 ))
done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>