shell-scripte-code/compress.sh
simono41 79284e1f7a fix
2017-10-03 21:44:32 +02:00

25 lines
382 B
Bash
Executable file

#!/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 archivname input/output"
fi