今天准备用wget下载时,发现报错误-bash: wget: command not found 于是执行yum install wget下载wget,却发现已经安装了wget,但尝试用wget命令下载却仍然报wget命令没有找到的错误。
-bash: wget: command not found
yum install wget
于是,自己执行下面命令重新删除了wget包
yum remove wget
再次重新安装
yum -y install wget
然后查看wget版本,居然发现wget又神奇的回来了
wget -V