Here's an example, with an explanation of each flag:
Code:
tar czvf bundle.tgz document.doc powerpoint.ppt logfile.log
c - create tarball
z - gzip (compress; much better than zip)
v - verbose (show everything it adds to the tarball)
f - force (don't confirm adding files; overwrite if file(s) already exist)