欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux常用命令 tar命令的使用和介绍

程序员文章站 2022-05-29 10:09:31
...

linux常用命令 tar命令的使用和介绍

1.tar命令参数介绍

2.tar常用命令

常看文件内容

 tar -ztvf 文件名
 [root@izwz91h49n3mj8r232gqwez weblogic]# tar -ztvf memcached-1.5.10.tar.gz
 解压后当前目录下 未新增文件 
[root@izwz91h49n3mj8r232gqwez weblogic]# ll
total 851944
drwxr-x---  9 1002 1002      4096 Jun 18 16:25 bea
-rw-r--r--  1 root root    465169 Sep 25 07:54 memcached-1.5.10.tar.gz
drwxr-xr-x 11 root root      4096 Aug 21 11:16 nginx
drwxr-xr-x  9 1001 1001      4096 Sep 13 16:26 nginx-1.6.2
-rw-r--r--  1 root root    804164 Sep 13 16:25 nginx-1.6.2.tar.gz
drwxrwxr-x  3 1002 1002      4096 Jun 18 17:09 webapp
-rwx------  1 1002 1002 871091023 Jun 18 16:12 wls1036_linux32.bin
drwxr-xr-x  5 root root      4096 Sep 23 21:51 zookeeper
[root@izwz91h49n3mj8r232gqwez weblogic]# 

解压文件

 tar -ztvf 文件名
  [root@izwz91h49n3mj8r232gqwez weblogic]# tar -ztvf memcached-1.5.10.tar.gz 
  解压后文件新增
drwxrwxr-x  6 admin admin      4096 Aug 11 04:40 memcached-1.5.10

  [root@izwz91h49n3mj8r232gqwez weblogic]# ll
total 851948
drwxr-x---  9  1002  1002      4096 Jun 18 16:25 bea
drwxrwxr-x  6 admin admin      4096 Aug 11 04:40 memcached-1.5.10
-rw-r--r--  1 root  root     465169 Sep 25 07:54 memcached-1.5.10.tar.gz
drwxr-xr-x 11 root  root       4096 Aug 21 11:16 nginx
drwxr-xr-x  9  1001  1001      4096 Sep 13 16:26 nginx-1.6.2
-rw-r--r--  1 root  root     804164 Sep 13 16:25 nginx-1.6.2.tar.gz
drwxrwxr-x  3  1002  1002      4096 Jun 18 17:09 webapp
-rwx------  1  1002  1002 871091023 Jun 18 16:12 wls1036_linux32.bin
drwxr-xr-x  5 root  root       4096 Sep 23 21:51 zookeeper
[root@izwz91h49n3mj8r232gqwez weblogic]#