Guest User

Untitled

a guest
Sep 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # How to make zip archive on arch linux
  2.  
  3. Must Need be Installed zip.. `sudo pacman -Syu zip`
  4.  
  5. ```
  6. zip -9 -r <zip file> <folder name>
  7. ```
  8. To zip a single file:
  9. ```
  10. zip -9 <zip file> <filename>
  11. ```
  12. Thanks
Add Comment
Please, Sign In to add comment