中级会员
  • 第 734 位会员
  • philsong
  • 78623269@qq.com
  • 2013-09-16 07:45:59
  • Offline
  • 0

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • @polaris one bug:next page only go to /topics route..
  • 提交了下代码:https://github.com/philsong/studygolang 欢迎一起玩
  • 刚才搞定 审帖,合并了topic和topicex表,理顺热门和活跃主题:)比studygolang现在的类别清楚多了。。。:)
  • #5 @daemon 会,go accpetex函数问题
  • #!/bin/sh #===================== #ni da ye golang crash when acceptEx #http://pingliwang.com:9090/ #===================== while : do echo "Current DIR is " $PWD stillRunning=$(ps -ef |grep "$PWD/bin/studygolang.exe" |grep -v "grep") if [ "$stillRunning" ] ; then echo "my service was already started by another way" echo "Kill it and then startup by this shell, other wise this shell will loop out this message annoyingly" kill -9 $pidof $PWD/bin/studygolang.exe else echo "my service was not started" echo "Starting service ..." $PWD/bin/studygolang.exe echo "my service was exited!" fi sleep 1 done