启动程序添加启动脚本

Posted cyblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动程序添加启动脚本相关的知识,希望对你有一定的参考价值。

当编译好程序后,就需要启动测试程序,为了方便,我们一般使用脚本来拉起启动程序。

写个测试程序testMain,

写个拉起脚本run.sh

#!/bin/sh

#Check program is running

count=`ps -ef | grep ‘./bin/testMain‘ | grep -v grep | wc -l`

#开启CORE开关

ulimit -c unlimited

#判读程序是否已经拉起
if [ $count -gt 0 ];then
  echo "testMain server is running!"
else
./shell/start_test.sh
#sleep 1s
fi

 

写个启动脚本start_test.sh

#!/bin/bash

export LD_LIBRARY_PATH=LD_LIBRARY_PATH:./module/lib/

./bin/testMain
sleep 1s

以上是关于启动程序添加启动脚本的主要内容,如果未能解决你的问题,请参考以下文章

添加啥代码可以使vbs脚本开机自启动?

开机自启脚本

linux 添加自己的启动脚本程序

设置让程序开机自启动的方法

Linux设置开机启动

求助QTP启动应用程序,要使用编写脚本的方式,而不是在windows application添加自动启动