Ubuntu is most popular operating system for development purpose and using by most of the developer. Ubuntu also come with many hosting provider like AWS, Digital Ocean.
So developer must have knowledge about some basic ubuntu command so today we discuss about a command for unzip any folder on server. So for this we need to setup SSH for connecting hosting server to our local system. SSH is technique for connecting any serve to out local system through system CLI or Shell Command interface. Using shell command we can access hosting server system.
Suppose we upload a folder name as xyz.zip and want to extract it.
So after connecting Server through ssh we need to move that directory where our zip is available, for this we use ‘cd’ command.
For unzip , unzip xyz.zip -d folder_name
after running this command xyz content will be extracted in folder_name