Answers for "zip bash"

42

linux zip a directory

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

zip bash

zip -r filename.zip folder
zip -r filename.zip folder1 folder2
zip -r filename.zip /path/to/folder1 /path/to/file2
Posted by: Guest on March-21-2021
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
7

create a zip file in linux

Zipping a folder in linux
zip -r tecmint_files.zip tecmint_files

Unzipping a Zip file in linux
unzip tecmint_files.zip
Posted by: Guest on June-26-2020
0

zip shell

$zip myfile.zip filename.txt
Posted by: Guest on September-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language