Version 0 of Tcllib tar

Updated 2013-11-06 01:51:32 by pooryorick

tar is a [Tcllib package for handling tar data.

Documentation

official reference

Example: tar.gz

To work with a gzipped tar file:

set chan [open myfile.tar.gz]
zlib push gunzip $chan 
set data [::tar::get $chan some_file_in_tarball]
close $chan