Tcl
Tcl
UnGzip .tgz to get a .tar
See more Tar Archive Examples
A .tgz is simply a TAR archive compressed using GZip. It is also commonly referred to as a .tar.gz. Chilkat GZip can be used to ungzip to get an uncompressed .tar.Chilkat Tcl Downloads
load ./chilkat.dll
set success 0
set gzip [new_CkGzip]
set success [CkGzip_UncompressFile $gzip "qa_data/tar/test.tgz" "qa_output/test.tar"]
if {$success != 1} then {
puts [CkGzip_lastErrorText $gzip]
} else {
puts "success."
}
delete_CkGzip $gzip