tar 打包多个文件
发布网友
发布时间:2022-04-23 01:59
我来回答
共5个回答
热心网友
时间:2022-05-15 11:05
我用的fc9
tar -cvf [包名] 〔要打包的文件命〕
例如:/home下有1.out,2.out,3.out三个文件,我想把它打包并且起名为“123.tar”并且存在/opt下。
tar -cvf /opt/123.tar /home/*.out
然后在opt下就有一个名为123.tar的包了。里面包含文件1.out,2.out,3.out.
热心网友
时间:2022-05-15 12:23
不压缩用:
tar -cvf out.tar 1.out 2.out 3.out
gz压缩用:
tar -czvf out.tar.gz 1.out 2.out 3.out
bz2压缩用:
tar -cjvf out.tar.bz2 1.out 2.out 3.out
输出文件名是写在前面的。
热心网友
时间:2022-05-15 13:58
tar tmp.tar ./
切换到要打包的目录下,使用上面命令打包,tmp.tar为打包后的文件,./为要打包的目录
热心网友
时间:2022-05-15 15:49
进入1.out 2.out 3.out所在目录
tar -cvf 1.out 2.out 3.out 保存路径
这两天也在研究这个,加油。
热心网友
时间:2022-05-15 17:57
tar cvfz 目录路径 保存路径