logmanager/logcompressor

37 lines
673 B
Plaintext
Raw Normal View History

2011-02-23 15:39:35 +01:00
#!/bin/sh
help() {
cat <<EOF
Usage: `basename "$0"` -h | [-n] [-g|-b|-l|-x|-c PACKER] DIR [DIR [...]]
2011-02-23 15:39:35 +01:00
Komprimiert alle Dateien in DIR/archive.
-n Trockenlauf
Packer: -g: gzip, -b: bzip2, -l: lzma, -x: xz, -c PACKER: einen anderen.
2011-02-23 15:39:35 +01:00
EOF
exit
}
p=gzip
while getopts he:ngblxc: o
2011-02-23 15:39:35 +01:00
do
case "$o" in
--) break ;;
-h) help ;;
-n) n=echo ;;
-g) p=gzip ;;
-b) p=bzip2 ;;
-l) p=lzma ;;
-x) p=xz ;;
-c) p="$OPTARG" ;;
2011-02-23 15:39:35 +01:00
esac
done
shift $(($OPTIND-1))
2011-02-23 15:39:35 +01:00
[ 0 -lt $# ] || help
for d
do
find "$d" -name archive -type d -exec sh -c 'empty=
find "$1" -type f ! -name "*.bz2" ! -name "*.gz" ! -name "*.lzma" ! -name "*.xz" -exec '"$n"' '"$p"' -- "{$empty}" \;' -- '{}' \;
2011-02-23 15:39:35 +01:00
done