zoukankan      html  css  js  c++  java
  • 启动程序添加启动脚本

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

    写个测试程序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

  • 相关阅读:
    POJ 1045
    POJ 1051
    POJ 1047
    POJ 1050
    POJ 1046
    POJ 1036
    POJ 1035
    POJ 1032
    【洛谷P1412】经营与开发
    【洛谷P3377】【模板】左偏树(可并堆)
  • 原文地址:https://www.cnblogs.com/cyblogs/p/11384489.html
Copyright © 2011-2022 走看看