文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>start_stop_restart 脚本一例

start_stop_restart 脚本一例

时间:2006-12-11  来源:cnscn2008

[root@localhost ~]# cat a.sh
#!/bin/sh
case "$1" in
   start)
        echo start
        ;;
   stop)
        echo stop
        ;;
   restart)
       $0 stop
       $0 start
       ;;
esac
#End of script

[root@localhost ~]# ./a.sh  restart
stop
start
相关阅读 更多 +
排行榜 更多 +
僵尸猎手小明

僵尸猎手小明

动作格斗 下载
狩猎波比

狩猎波比

动作格斗 下载
花海相机

花海相机

图像拍照 下载