zipping

   
 zip -r archive.zip dir_to_zip
   
 
if you want to extract to a particular destination folder, you can use:
  
unzip file.zip -d destination_folder
  

If you want to extract to a directory with the same name as the zip in your current working directory, you can simply do:

  
unzip file.zip 
  

edit this page