How to unzip a zip file from the Terminal

    By: Thad Mertz
    3 years ago

    ok first install unzip

    sudo apt-get install unzip
    

    It will ask system password so be ready

    then go to directory where zip file is present and unzip like this

    // if file is in project folder
    
    cd project
    
    //then
    
    unzip zipfilename.zip
    

    That's it