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