xz gzip bzip2使用方法基本一样
压缩文件
[[email protected] ~]# xz 111.txt
[[email protected] ~]# ls //////111.txt文件消失
111.txt.xz 1.txt
查看压缩文件内容
[[email protected] ~]# xz 111.txt
[[email protected] ~]# xzcat 111.txt.xz
111111
wqweqeqeq
wqweqeqeq
解压文件
[[email protected] ~]# xz -d 111.txt.xz
[[email protected] ~]# ls
111.txt 1.txt
时间: 2024-12-16 20:23:51