Tar Bash
# to untar
tar -xzf filename.tar.gz
# to tar
tar -czf filename.tar.gz untaredfile
# similar tool to zip
tar <options> <file>
#<options>:
# x = extract, v = verbose, f = file input, c = create, z = compress
Dizzy Dog