Many times during development some linux commands are required to run. Here we have listed some useful commands which a developers need normally in daily development life.
Zip & Unzip
If zip and unzip are not installed at server then you can install it by below commands
sudo apt install zip unzip
zip folder and unzip file
zip -r filename.zip folder
zip -r filename.zip folder1 folder2
zip -r filename.zip /path/to/folder1 /path/to/file2
unzip filename.zip
0 Comments