Unzip Command In Linux

Chapter: Linux Commands Last Updated: 20-11-2019 16:47:35 UTC

Program:

            /* ............... START ............... */
                

ubuntu@ubuntu:~/Desktop$ unzip jdk1.8.0_231.zip  // This will extract the files to current directory

ubuntu@ubuntu:~/Desktop$ unzip -q jdk1.8.0_231.zip // -q is used to suppress the printing the details of files.

ubuntu@ubuntu:~/Desktop$ unzip -q jdk1.8.0_231.zip -d ~/Desktop/JDK/   /* Command will unzip to folder ~/Desktop/JDK/  */

ubuntu@ubuntu:~/Desktop$ unzip -l jdk1.8.0_231.zip  // will list the details of the file in zip file.


                /* ............... END ............... */
        

Output


            Unzip Command In Linux
        

Notes:

  • Command used in linux to unzip the file is "unzip". unzip command will extract all files from the specified ZIP archive to the current directory.
  • Syntax : unzip [filename] [folderlocation (Optonal)]
  • $ unzip -q jdk1.8.0_231.zip - This command will unzip the file jdk1.8.0_231.zip. Here -q is optional, -q is used to suppress the printing of files extracting during the unzip operation.
  • $ unzip -q jdk1.8.0_231.zip -d ~/Desktop/JDK/ - By using the command file will be extracted and copy to folder location specified. Currently here it is ~/Desktop/JDK/. (-d parameter is mandatory for this command).
  • $ unzip -l jdk1.8.0_231.zip - unzip -l command will list the details of the files in zip file(It will not unzip the files).
  • For more information you can refer the program and output sections.
Similar Programs Chapter Last Updated
How To Enable Permission On File Linux Ubuntu Linux Commands 26-08-2023
Linux Command To Give All Permissions To A File Linux Commands 24-08-2023
Important Network Commands In Linux Linux Commands 24-08-2023
Important Commands In Linux Linux Commands 24-08-2023
Grep Command In Linux Example Linux Commands 10-05-2023
Traceroute Command In Ubuntu Linux Commands 10-05-2023
Linux Command To Count Number Of Files In A Directory Linux Commands 18-03-2023
Linux Version Command Linux Commands 01-12-2020
Process Command In Linux Linux Commands 16-11-2019
Linux Command To Create Link Linux Commands 15-11-2019
Linux Command To View File Content Linux Commands 25-10-2019
Linux Command To Check OS Version Linux Commands 25-10-2019
Netstat Command In Linux Linux Commands 13-08-2019
Telnet Command In Linux Linux Commands 13-08-2019
Linux Command To Create A File Linux Commands 23-05-2019
Linux echo Command Linux Commands 05-05-2018
Linux Ping Command Linux Commands 05-05-2018
Linux ls (List Directory) Command Linux Commands 17-03-2018

1