5 lines
112 B
Bash
5 lines
112 B
Bash
|
#!/usr/bin/env bash
|
||
|
source=$1;
|
||
|
archive=${source%.xz}; # cut off trailing ".xz"
|
||
|
unxz $source && tar xfv $archive
|