- Home
- Uncategorized
- Zipping an Entire Directory on Linux
Zipping an Entire Directory on Linux
It’s easy to zip up a folder in Linux which will save you a lot of time transferring lots of files between machines:
sudo zip -r /home/tom/myData.zip /home/tom/MyDataFolder/*
If the machine does not have the zip application installed, you can add it easily with the following command:
sudo apt install zip unzip