Zip command for Terminal
Creating a Zip File To create a zip file, use the following syntax: zip -r output.zip input_directory/ Enter fullscreen mode Exit fullscreen mode This will create a zip file called output.zip containing all the files and directories inside input_directory/. Extracting...