tar命令我最常用于解压.tar.gz文件
tar -zxvf 压缩文件
将压缩文件解压到当前目录
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参数
root@VM-12-155-debian:~/eth10# tar -zxvf /root/tmp/httpd-2.4.25.tar.gz
本文出自 “eth10” 博客,请务必保留此出处http://eth10.blog.51cto.com/13143704/1959795
原文地址:http://eth10.blog.51cto.com/13143704/1959795