Saturday, April 26, 2014

unzip

  • unzip command examples

To extract a *.zip compressed file:

$ unzip test.zip

View the contents of *.zip file (Without unzipping it):
$ unzip -l jasper.zip
Archive:  jasper.zip
  Length     Date   Time    Name
 --------    ----   ----    ----
    40995  11-30-98 23:50   META-INF/MANIFEST.MF
    32169  08-25-98 21:07   classes_
    15964  08-25-98 21:07   classes_names
    10542  08-25-98 21:07   classes_ncomp

Related Posts:

  • A-Z Index of the Mostly used Bash command line for Linux A      awk B      bzip2 C      cd       |     crontab  … Read More
  • diff diff command examples Ignore white space while comparing. # diff -w name_list.txt name_list_new.txt  2c2,3 < John Doe --- > John M Doe > Jason Bourne Normal 0 false… Read More
  • date date command examples Set the system date: $ date -s "01/31/2010 23:59:53" Once you’ve changed the system date, you should syncronize the hardware clock with the system date as shown below. $ hwcloc… Read More
  • chown chown command examples chown command is used to change the owner and group of a file. To change owner to oracle and group to db on a file. i.e Change both owner and group at the same… Read More
  • df df command examples Displays the file system disk space usage. By default df -k displays output in bytes. $ df -k Filesystem           1K-blocks  &n… Read More

0 comments:

Post a Comment