sync/scripts/decompress_and_unarchive.sh
2025-04-16 21:39:25 +02:00

6 lines
152 B
Bash
Executable File

#!/usr/bin/env bash
source=$1;
# archive=${source%.xz}; # cut off trailing ".xz"
# unxz "$source" && tar xfv "$archive"
tar x -I"unxz -v" -vf "$source"