traditional style

tar cfv etc.tar /etc
# verbose output use the -v option
tar -xvf archive.tar.bz2h
  • v option requests the verbose operation
  • c option requires creating the archive
  • f option takes an argument that sets the name of the archive to operate upon.