diff --git a/compress.sh b/compress.sh index a95486b..47b53a0 100755 --- a/compress.sh +++ b/compress.sh @@ -16,10 +16,20 @@ if [ "make" == "$1" ]; then tar -cf ${archiv}.tar ${dateien} pixz ${archiv}.tar ${archiv}.tar.pxz + + # säuberung + rm ${archiv}.tar elif [ "restore" == "$1" ]; then + pixz -d ${archiv} ${archiv/.pxz*} tar -xf ${archiv/.pxz*} + + # säuberung + rm ${archiv/.pxz*} else + echo "tar.pxz compress-script" echo "./compress.sh make/restore archivname input/output" + echo "./compress.sh make archivname daten" + echo "./compress.sh restore archivname" fi