Version 1 of Tcllib tar

Updated 2013-11-06 01:52:39 by pooryorick

tar is a Tcllib package for handling tar data.

tar

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