forked from ungleich-public/ccollect
Add idea, du -shl vs. du -sh, but no implementation
This commit is contained in:
parent
e68e536033
commit
d05b4dc3a8
1 changed files with 31 additions and 0 deletions
31
tools/gnu-du-backup-size-compare.sh
Executable file
31
tools/gnu-du-backup-size-compare.sh
Executable file
|
@ -0,0 +1,31 @@
|
||||||
|
#!/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_INTERVALS"
|
||||||
|
|
||||||
|
for interval in *; do
|
||||||
|
eval int_$interval=$(cat $interval);
|
||||||
|
eval echo $interval: \$int_$interval;
|
||||||
|
done
|
Loading…
Reference in a new issue