cd (directory you want files to go to)
(command to unzip) (full path to file)
eg if it is a file test.tar in /home/poopmonster/tars/ and you want it in /home/poopmonster/poops/
you would do:
cd /home/poopmoster/poops/
tar -xvf /home/poopmonster/tars/test.tar
|