www.nico.schottelius.org/software/ccollect/download/ccollect-0.6.2/tools/gnu-du-backup-size-compare.sh
Nico Schottelius 851d24074e add related plus support
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2010-04-08 22:33:02 +02:00

33 lines
610 B
Bash

#!/bin/sh
#
# Nico Schottelius <nico-ccollect //@// schottelius.org>
# Date: 2007-08-16
# Last Modified: -
#
exit 1
# not yet finished.
CCOLLECT_CONF=${CCOLLECT_CONF:-/etc/ccollect}
CCOLLECT_SOURCES="$CCOLLECT_CONF/defaults/sources"
me="$(basename "$0")"
if [ $# -lt 1 ]; then
echo "${me}: sources names
exit 1
fi
if [ ! -d "$CCOLLECT_SOURCES" ]; then
echo "No sources defined in $CCOLLECT_SOURCES"
exit 1
fi
cd "${CCOLLECT_SOURCES}"
while [ "$#" -gt 0 ]; do
source="$1"; shift
fsource="${CCOLLECT_SOURCES}/${source}"
du -s "${fsource}/"* "${fsource}"
# du -l should follow
done