shell 判断rpm安装包是否存在,不存在安装

[root@orange ~]# rpm -ql expect
/usr/bin/expect

vim 1.sh ##通过检查文件是否存在判断安装包是否存在
if [ ! -e “/usr/bin/expect” ]
then
/usr/bin/yum -y install expect >/dev/null
else
“已经安装”
fi

你可能感兴趣的:(shell脚本)