zoukankan      html  css  js  c++  java
  • Linux之tar.gz file

      A tarball (tar.gz file) is compressed tar archive.

      The tar program provides the ability to create tar archives, as well as various other kinds of manipulation. For example, you can use Tar on previously created archives to extract files, to store additional files, or to update or list files which were already stored.

      Syntax  

    tar options file.tar.gz
    tar options file.tar.gz pattern
    tar -xf file.tar.gz
    tar -xvf file.tar.gz
    tar -zxvf file.tar.gz
    tar -zxvf file.tar.gz file1 file2 dir1 dir2

      Extract tar.gz file 

      Extract one or more members from an archive, enter:

    tar -zxvf {file.tar.gz}

      If your tarball name is backup.tar.gz, enter the following at a shell prompt to extract files:

    tar -zxvf backup.tar.gz

      Extract resume.doc file from backup.tar.gz tarball, enter:

    tar -zxvf backup.tar.gz resume.doc

      Where,

      -z :  Work on gzip compression automatically when reading archives

      -x :  Extract archives

      -v :  Produce verbose output  i.e. progress and extracted file list on screen

      -f  :  Read the archive from the archive to the specified file.

      -t  :  List the files in the archive

     

      Extracting an entire archive

      To extract an entire archive, specify the archive file name only, with no individual file names as arguments.

    tar -zxvf backup.tar.gz

      List files in archive

      To view a detailed table of contents (list of file), enter:  

    tar -tvf backup.tar.gz
  • 相关阅读:
    简单讲解Asp.Net Core自带IOC容器ServiceCollection
    C#配置文件configSections详解
    学习Linq之前必须知道的几种语法糖
    学习Linq之前必须要了解的扩展方法
    学习学习学习学习!!!!!!!!!!!!
    SpringBoot自动配置原理
    OAuth2
    微服务搭建学习笔记(一) 认证中心搭建
    Vue 学习记录
    Vue实例(1)
  • 原文地址:https://www.cnblogs.com/mengdie/p/4581582.html
Copyright © 2011-2022 走看看