tar命令我最常用于解压.tar.gz文件
1
|
tar
-zxvf 压缩文件
|
将压缩文件解压到当前目录
1
2
3
4
5
|
root@VM-12-155-debian:~
/eth10
# ls
baidu.com baidu.html eth10 index.html
root@VM-12-155-debian:~
/eth10
# tar -zxf /root/tmp/httpd-2.4.25.tar.gz
root@VM-12-155-debian:~
/eth10
# ls
baidu.com baidu.html eth10 httpd-2.4.25 index.html
|
root@VM-12-155-debian:~/eth10#
如果要输出解压详细信息可以加-v参数
1
|
root@VM-12-155-debian:~
/eth10
# tar -zxvf /root/tmp/httpd-2.4.25.tar.gz
|
本文转自 eth10 51CTO博客,原文链接:http://blog.51cto.com/eth10/1959795