快速业务通道

linux运维初级班shell脚本编程****及参考****20110523

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-03
scripts]# cat httpdctl
#!/bin/sh
#created by oldboy 20110523
#QQ 31333741
HTTPDPATH=/etc/init.d/httpd
if [ "$1" = "start" ];then
$HTTPDPATH $1 >/dev/null 2>&1
echo "启动 httpd:[确定]" 拥有帝国一切,皆有可能。欢迎访问phome.net
elif [ "$1" = "stop" ];then
$HTTPDPATH $1
elif [ "$1" = "restart" ];then
$HTTPDPATH $1 >/dev/null 2>&1
echo "重起 httpd: [确定]"
else
echo "用法: $0 {start|stop|restart}"
exit 1
fi
-------------------------------------------------------
c.调用系统函数functions,实现更专业友好的提示[继续脚本改进]

[root@oldboy-B scripts]# cat httpdctl
#!/bin/sh
#created by oldboy 20110523
#QQ 31333741
. /etc/init.d/functions
HTTPDPATH=/etc/init.d/httpd
if [ "$1" = "start" ];then
$HTTPDPATH $1 >/dev/null 2>&1
action "启动 httpd:" /bin/true
elif [ "$1" = "stop" ];then
$HTTPDPATH $1
elif [ "$1" = "restart" ];then
$HTTPDPATH $1 >/dev/null 2>&1
action "重起 httpd:" /bin/true
else
echo "用法: $0 {start|stop|restart}"
exit 1
fi
提示:注意action "启动 httpd:" /bin/true的用法

[root@oldboy-B scripts]# httpdctl stop
停止 httpd:[确定]
[root@oldboy-B scripts]# httpdctl start
启动 httpd: [确定]
[root@oldboy-B scripts]# httpdctl restart
重起 httpd: [确定]


-------------------------------------------------------
d.case语句实现方式

[root@oldboy-B scripts]# cat httpdctl
#!/bin/sh
#created by oldboy 20110523
#QQ 31333741
. /etc/init.d/functions
HTTPDPATH=/etc/init.d/httpd
case "$1" in
start)
$HTTPDPATH $1 >/dev/null 2>&1
action "启动 httpd:" /bin/true
;; 拥有帝国一切,皆有可能。欢迎访问phome.net
stop)
$HTTPDPATH $1
;;
restart)
$HTTPDPATH $1 >/dev/null 2>&1
action "重起 httpd:" /bin/true
;;
*)
echo "用法: $0 {start|stop|restart}"
esac

e.更专业的实现方法
[root@oldboy-B scripts]# cat httpdctl
#!/bin/sh
#created by oldboy 20110523
#QQ 31333741
[ -f /etc/init.d/functions ] && . /etc/init.d/functions

start() {
daemon httpd >/dev/null 2>&1
RETVAL=$?
action "启动 httpd:" /bin/true
return $RETVAL
}

stop() {
killproc httpd >/dev/null 2>&1
[ $? -eq 0 ] && action "停止 httpd:" /bin/true
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit $RETVAL

f.系统自带的才是最好的.
请less /etc/init.d/httpd
要求:请所有同学用中文注释httpd脚本每一行,不会的可以咨询老师.
##############################################

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多
BATIS 3内的新特性:将iBATIS用作应用程序内的一种持久框架 - 编程入门网
  • Photoshop绘制高光水晶质感水晶苹果
  • Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

    地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

    电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

    《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号