9 lines
148 B
Bash
Executable File
9 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ARCHIVE=${PWD##*/}.tar.zst
|
|
if [ -d "volumes" ]; then
|
|
rm -r volumes
|
|
fi
|
|
mkdir volumes
|
|
tar --zstd --same-owner -xvf $ARCHIVE -C volumes
|