Answers for "open tar.Z files"

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language