Linux:tar指令基本使用

举报
彭世瑜 发表于 2021/08/14 01:26:45 2021/08/14
【摘要】 命令格式: tar[必要参数][选择参数][文件] 1 参数说明 $ tar -h 第一个选项必须是模式说明符: -c Create -r Add/Replace -t List -u Update -x Extract Common Options: -b # Use # 512-byte records per I/O block -...

命令格式:

tar[必要参数][选择参数][文件] 

  
 
  • 1

参数说明

$ tar -h
第一个选项必须是模式说明符:
  -c Create  -r Add/Replace  -t List  -u Update  -x Extract

Common Options:
  -b #  Use # 512-byte records per I/O block
  -f <filename>  Location of archive
  -v Verbose
  -w Interactive

Create: tar -c [options] [<file> | <dir> | @<archive> | -C <dir> ]
  <file>, <dir>  add these items to archive
  -z, -j, -J, --lzma  Compress archive with gzip/bzip2/xz/lzma
  --format {ustar|pax|cpio|shar}  Select archive format
  --exclude <pattern>  Skip files that match pattern
  -C <dir>  Change to <dir> before processing remaining files
  @<archive>  Add entries from <archive> to output

List: tar -t [options] [<patterns>]
  <patterns>  If specified, list only entries that match

Extract: tar -x [options] [<patterns>]
  <patterns>  If specified, extract only entries that match
  -k Keep (don't overwrite) existing files
  -m Don't restore modification times
  -O Write entries to stdout, don't restore to disk
  -p Restore permissions (including ACLs, owner, file flags)


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

实例操作

# 新建一个临时目录
$ mkdir tmp && cd tmp

# 新建3个文件
$ touch file{1,2,3}.txt
$ ls
file1.txt   file2.txt   file3.txt

#  1、打包(并非压缩)
$ tar -cvf file.tar *.txt
a file1.txt
a file2.txt
a file3.txt

$ ls
file.tar file1.txt   file2.txt   file3.txt

# 2、查看包内文件
$ tar -tvf file.tar
-rw-r--r--  0 QMP admin 0  5 16 20:21 file1.txt
-rw-r--r--  0 QMP admin 0  5 16 20:21 file2.txt
-rw-r--r--  0 QMP admin 0  5 16 20:21 file3.txt

# 3、向现有打包文件中添加新文件
$ touch file4.txt
$ tar -rvf file.tar file4.txt
a file4.txt

$ tar -tvf file.tar
-rw-r--r--  0 QMP admin 0  5 16 20:21 file1.txt
-rw-r--r--  0 QMP admin 0  5 16 20:21 file2.txt
-rw-r--r--  0 QMP admin 0  5 16 20:21 file3.txt
-rw-r--r--  0 QMP admin 0  5 16 20:22 file4.txt

# 4、当前目录下解压文件
$ tar -xvf file.tar
x file1.txt
x file2.txt
x file3.txt
x file4.txt


$ ls
file.tar file1.txt   file2.txt   file3.txt   file4.txt

# 指定解压目录,需要先新建目录,如果没有则会报错:目录不存在
$ mkdir file
$ tar -xvf file.tar -C file
x file1.txt
x file2.txt
x file3.txt
x file4.txt

$ ls
file file1.txt   file3.txt
file.tar file2.txt   file4.txt

# 进入目录查看解压后的文件
$ cd file
$ ls
file1.txt   file2.txt   file3.txt   file4.txt


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62

参考
linux中tar命令的用法

文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。

原文链接:pengshiyu.blog.csdn.net/article/details/90271481

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

举报
请填写举报理由
0/200