Answers for "zip folder linux"

42

linux zip a directory

zip -r filename.zip /path/to/folder1
Posted by: Guest on May-11-2020
6

convert all files and folders in current directory into zip in linux

zip -r myfiles.zip mydir
Posted by: Guest on May-09-2020
11

create zip file ubuntu

zip -r output_file.zip file1 folder1
Posted by: Guest on July-02-2020
8

zip entire directory ubuntu

zip -r compressed_filename.zip foldername
Posted by: Guest on May-29-2020
3

linux install zip command

sudo apt install zip
Posted by: Guest on August-05-2020
1

zip folder linux

# -r (recursive) option to do the entire directory trees at once
zip -r myfiles.zip mydir
Posted by: Guest on June-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language