Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. sudo apt-get install unzip
  2.  
  3. unzip file.zip -d destination_folder
  4.  
  5. sudo apt-get install p7zip-full
  6.  
  7. 7z l zipfile.zip
  8.  
  9. 7z x zipfile.zip
  10.  
  11. unzip file.zip -d somedir
  12.  
  13. sudo unzip file.zip -d /somedir
  14.  
  15. unzip filename.zip
  16.  
  17. Command: sudo unzip -[option] zip-path.
  18. -l List archive files.
  19. -t Test archive files with cyclic redundancy check.
  20. -u update the existing files.
  21. -z archive comment.
  22.  
  23. bsdtar -x -f /one/two/three/four.zip -C /five
  24. unzip /one/two/three/four.zip -d /five
  25.  
  26. /one/two/three/alfa/four.txt
  27. /one/two/three/bravo/four.txt
  28.  
  29. alfa/four.txt
  30. bravo/four.txt
  31.  
  32. bsdtar -a -c -f four.zip -C /one/two/three alfa bravo
  33.  
  34. ./pyunzip master.zip
  35.  
  36. ./perlunzip master.zip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement