Hey folks! If you're anything like me, sometimes you just want a quick and straightforward way to bundle up a bunch of files or folders into a neat little package. Well, good news – creating a zip file in Ubuntu using the command line is easier than you might think!
In this guide, I'll walk you through the steps, and trust me, it's as simple as typing a few commands into your terminal.
So, let's see how to create a zip file in Ubuntu using a command line, how to make a zip file in Ubuntu command line, ubuntu unzip command, zip command in Linux, and Linux zip command.
Create a step-by-step guide on creating a zip file in Ubuntu using the command line.
Create a file using the following command.
zip -r zip_name.zip folder
Example:
zip -r laravel.zip Laravel
Create multiple zip files using a single Ubuntu command.
zip -r test.zip folder1 folder2 folder3
Example:
zip -r test.zip testFolder1 testFolder2 testFolder3
Create password protected zip file using command line.
zip -e test.zip folder
The command will be prompted to enter and verify the archive password:
Enter password:
Verify password:
Example:
zip -r -e test.zip TestFolder
if you want to zip all files and folders in the current directory, you can use.
zip -r myarchive.zip *
To verify that the zip file was created successfully, you can use the unzip
command to extract its contents:
unzip myarchive.zip
That's it! You've successfully created a zip file in Ubuntu using the command line. You can now share or move your zip file as needed.
Creating a zip file via the terminal is a quick and efficient way to compress your files and folders.
You might also like:
In this tutorial, we will see laravel 8 ajax crud with yajra datatable. I will show you how to create ajax crud ope...
Jan-05-2022
Hey there! If you're diving into PHP development on Ubuntu 22.04 and need to connect your applications to MySQL data...
Feb-28-2024
Welcome to the fifth installment of our ongoing series, "Laravel Tips: DB Models and Eloquent." In this latest...
Oct-20-2023
Today in this small post i will show you how to convert excel file into json in javascript. Many time we have requi...
Jul-07-2021