Answers for "how to extract tar.zst file in windows"

0

open tar.Z files

#Uncompress all *.tar.Z files in a directory
zcat *.Z | tar -xvf -

## To just uncompress .Z
uncompress *.Z
## This gives a .tar file which can be separately extracted in a canonical fashion
tar -xvf *.tar
Posted by: Guest on July-30-2021
0

extract tar gz

tar xvzf file.tar.gz
Posted by: Guest on July-28-2020

Code answers related to "how to extract tar.zst file in windows"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language