zoukankan      html  css  js  c++  java
  • Linux tar command usage

    Linux tar command usage

    Linux tar command usage

    The frequently used tar command are listed as follows:

    1 Create an archive:

    tar -cvf archive.tar files_to_add/folder_to_add

    the corresponding extract command:

    tar -xvf archive.tar

    2 Create a gzipped archive:

    tar -cvzf archive.tar.gz files_to_add/folder_to_add

    The corresponding extract command:

    tar -xvfz archive.tar.gz

    3 List the files in an archive

    tar -tvf archive.tar

    or

    tar -tvfz archive.tar.gz

    4 Add a file or directory to an existing archive

    tar -rvf archive.tar files_to_add

    Author: wujing

    Created: 2014-04-30 三 09:21

    Emacs 24.3.1 (Org mode 8.2.6)

    Validate

  • 相关阅读:
    QTP最小化代码
    开源Web自动化测试框架
    翟志刚系电脑游戏高手
    Java开源框架集[转载]
    Windows xp 控制台命令一览表〔转载〕
    三大措施将SQL注入攻击的危害最小化
    Zee书评:对于涌的《软件性能测试与Load Runner实战》的个人看法
    藏獒遭主人打骂后咬舌自尽
    IDS\IPS相关知识〔搜集〕
    lr之RTE脚本(telnet方式访问水木清华)
  • 原文地址:https://www.cnblogs.com/wujingcqu/p/3700584.html
Copyright © 2011-2022 走看看