meme.darwin.in

来自「EM算法的改进」· IN 代码 · 共 45 行

IN
45
字号
#!/bin/sh## Starts/stops Meme and Mast servers ## This file is automatically generated by make # $Id: meme.darwin.in 1339 2006-09-21 19:46:28Z tbailey $# $Log$# Revision 1.2  2006/03/07 23:30:17  nadya# merge branches v3_5_1 and v3_5_2 back to the trunk## Revision 1.1.6.1  2006/02/28 20:30:29  nadya# update to proper startup script## Revision 1.1  2005/12/16 23:09:11  nadya# initial revision. place holder to make compilation complete##. /etc/rc.common# site-specific configuration file CONF=@MEMEDIR@/etc/meme_configif [ -f $CONF ] ; then    . $CONFelse    echo "$CONF does not exist. Meme installation is incomplete"    exit 1fiMEMED=@MEMEDIR@/bin/memedStartService ()	su $MEME_USER $MEMED startStopService ()	su $MEME_USER $MEMED stop        RestartService (){	su $MEME_USER $MEMED restart}RunService "$1"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?