Hello everyone! I need to to uncompress "somefile.txt" from "home.tar", and this last one is inside "daily.tar.gz".
I could untar home.tar by: $tar --extract --file=daily.tar.gz path/to/home.tar
and then untar file.txt from home.tar by: $tar --extract --file=home.tar somefile.txt
finally i could "cat file.txt"...
THE PROBLEM IS: It is a daily backup and it is impossible for me to download to my linux box, then untar on my local disk.
I can SSH the server but can't untar daily.tar.gz or home.tar because of the size
How can i UNTAR just somefile.txt from home.tar, inside daily.tar.gz on the fly?
THANKS A LOT!!!
