mirror of
https://github.com/simon987/scripts.git
synced 2025-04-04 08:23:05 +00:00
10 lines
124 B
Bash
Executable File
10 lines
124 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
XZ_OPT=-9
|
|
|
|
F=$(basename "$1")
|
|
|
|
mkdir /tmp/"$F"
|
|
unzip "$1" -d /tmp/"$1"
|
|
tar -cJf "$1".tar.xz /tmp/"$F"
|