Difference between revisions of "Linux command: zip"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "Compress files == Create zip file == zip file.zip files to compress == Create password protected zip file == zip --encrypt file.zip files to compress") |
Rafahsolis (talk | contribs) m Tag: visualeditor |
||
| Line 1: | Line 1: | ||
Compress files | Compress files | ||
| − | == Create zip file == | + | ==Create zip file== |
zip file.zip files to compress | zip file.zip files to compress | ||
| − | == Create password protected zip file == | + | ==Create password protected zip file== |
zip --encrypt file.zip files to compress | zip --encrypt file.zip files to compress | ||
| + | |||
| + | == Split files with max size == | ||
| + | <syntaxhighlight lang="bash"> | ||
| + | zip -s 900m StarWars.EpisodeI.zip Star.Wars.Episode.1.The.Phantom.Menace.1999.1080p.mp4 | ||
| + | </syntaxhighlight> | ||