centos7 tar 压缩 解压

2020-04-15  本文已影响0人  淼哥1986
[root@localhost app]# ll
total 0
-rw-r--r--. 1 root root  0 Apr 15 22:28 1.txt
drwxr-xr-x. 2 root root 19 Apr 15 22:28 dir
[root@localhost app]# tar -cvf a.tar ./*
./1.txt
./dir/
./dir/2.txt

[root@localhost app]# ll
total 12
-rw-r--r--. 1 root root 10240 Apr 15 22:28 a.tar
[root@localhost app]# tar -xvf a.tar 
./1.txt
./dir/
./dir/2.txt
[root@localhost app]# ll
total 12
-rw-r--r--. 1 root root     0 Apr 15 22:28 1.txt
-rw-r--r--. 1 root root 10240 Apr 15 22:28 a.tar
drwxr-xr-x. 2 root root    19 Apr 15 22:28 dir

上一篇下一篇

猜你喜欢

热点阅读