初识Linux(六)

paste :

[root@localhost test]# cat e f
123456
123123
234142
231525
root1
root2
root3
root4
[root@localhost test]# paste -d: f e
root1:123456
root2:123123
root3:234142
root4:231525

tar

tar tape archive 磁带归档,磁带便宜磁带机很贵,慢永久保存,硬盘越来越便宜了

tar [选项] ... 归档文件名 源文件或目录 tar [选项] ... 归档文件名 [-C 目标目录]

此处选项有先后要求

  • -c:创建(Create).tar 格式的包文件

  • -x:解开.tar 格式的包文件

  • -C:解压时指定释放的目标文件夹

  • -f:表示使用归档文件(一般都要带上表示使用tar)

  • -p:打包时保留文件及目录的权限

  • -P:打包时保留文件及目录的绝对径

  • -t:列表查看包内的文件(要和f一起使用)

  • -v:输出详细信息(Verbose)

  • -j:调用 bzip2 程序进行压缩或解压

  • -z:调用 gzip 程序进行压缩或解压

[root@localhost test2]# mkdir 1
[root@localhost test2]# tar zcvf ./1/dracut.conf.tar.gz dracut.conf
dracut.conf
[root@localhost test2]# ls
1  dracut.conf
[root@localhost test2]# tree
.
├── 1
│   └── dracut.conf.tar.gz
└── dracut.conf
[root@localhost test2]# mkdir 2
[root@localhost test2]# tar xzvf ./1/dracut.conf.tar.gz -C ./2
dracut.conf
[root@localhost test2]# tree
.
├── 1
│   └── dracut.conf.tar.gz
├── 2
│   └── dracut.conf
└── dracut.conf

用*来压缩选择全部文件夹:

[root@localhost test2]# tar czvf 3/abc.tar /test2*
tar: 从成员名中删除开头的“/”
/test2/
/test2/1/
/test2/1/dracut.conf.tar.gz
/test2/2/
/test2/2/dracut.conf
/test2/dracut.conf
/test2/3/
/test2/3/abc.tar
[root@localhost test2]# 
.
├── 1
│   └── dracut.conf.tar.gz
├── 2
│   └── dracut.conf
├── 3
│   └── abc.tar
└── dracut.conf

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值