Zipping a directory and all of its contents in Linux is extremely easy. Here's the command required, at its most basic:
zip -r zipname path
For example, the following will zip the entire contents of the directory mywork. The resulting zip file will be called myzip.zip:
zip -r myzip mywork
Then to unzip it, simply enter:
unzip myzip
|