This commit is contained in:
simono41 2017-10-03 21:40:13 +02:00
parent f79bd3b787
commit 11aaaa5c9a

25
compress.sh Executable file
View file

@ -0,0 +1,25 @@
#!/bin/bash
set -ex
archiv=$2
if [ "make" == "$1" ]; then
while (( "$(expr $# - 2)" ))
do
dateien="$3 ${dateien}"
shift
done
tar -cf ${archiv}.tar ${dateien}
pixz ${archiv}.tar ${archiv}.tar.pxz
elif [ "restore" == "$1" ]; then
pixz -d ${archiv} ${archiv/.pxz*}
tar -xf ${archiv/.pxz*}
else
echo "./compress.sh make/restore input/output"
fi