markdown Tar(tar.gz)并解压缩文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Tar(tar.gz)并解压缩文件相关的知识,希望对你有一定的参考价值。

Compress: 

    tar -czvf some-file.tar.gz .
    
OR

    tar -czvf some-file.tar.gz <some/folder/location/>
  
Untar:

To a directory,

    sudo tar -xvf some-file.tar.gz -C /some/folder/location/
    
To current directory,

    sudo tar -xvf some-file.tar.gz 
    
Note: to prevent a folder being created when extracting use `--strip-components=1` option. ex.

    sudo tar -xvf some-file.tar.gz -C /some/folder/location/ --strip-components=1

以上是关于markdown Tar(tar.gz)并解压缩文件的主要内容,如果未能解决你的问题,请参考以下文章

抓取一个Drupal模块并解压缩它

ubuntu安装 tar.gz格式程序

python解压压缩包的几种方法

Linux编译和安装boost库

如何把文件压缩成tar.gz

Ubuntu安装jdk