当前位置: 技术问答>linux和unix
制作RPM时,如何在RPM安装包中输出提示信息!
来源: 互联网 发布时间:2016-02-03
本文导语: 在制作RPM时我想给用户提示一些信息,我是这样写的 %install echo #check whether the current user is root if test $(id -ur) != 0; then echo echo "You should logon as root user!" echo exit fi 为什么在安装时echo不能输出提示信息?...
在制作RPM时我想给用户提示一些信息,我是这样写的
%install
echo
#check whether the current user is root
if test $(id -ur) != 0; then
echo
echo "You should logon as root user!"
echo
exit
fi
为什么在安装时echo不能输出提示信息?
如何输出?
%install
echo
#check whether the current user is root
if test $(id -ur) != 0; then
echo
echo "You should logon as root user!"
echo
exit
fi
为什么在安装时echo不能输出提示信息?
如何输出?
|
%pre
在这个东东后面写,echo可以用的。
在这个东东后面写,echo可以用的。