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