Skip to content

Commit

Permalink
创建scripts目录,专门放调用脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
zwssunny committed Feb 28, 2023
1 parent b81d947 commit 8729a31
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion shutdown.sh → scripts/shutdown.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

#关闭服务

cd `dirname $0`/..
export BASE_DIR=`pwd`
pid=`ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'`
if [ -z "$pid" ] ; then
Expand Down
1 change: 1 addition & 0 deletions start.sh → scripts/start.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
#后台运行Chat_on_webchat执行脚本

cd `dirname $0`/..
export BASE_DIR=`pwd`
echo $BASE_DIR

Expand Down
14 changes: 14 additions & 0 deletions scripts/tout.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
#打开日志

cd `dirname $0`/..
export BASE_DIR=`pwd`
echo $BASE_DIR

# check the nohup.out log output file
if [ ! -f "${BASE_DIR}/nohup.out" ]; then
echo "No file ${BASE_DIR}/nohup.out"
exit -1;
fi

tail -f "${BASE_DIR}/nohup.out"
7 changes: 0 additions & 7 deletions tout.sh

This file was deleted.

0 comments on commit 8729a31

Please sign in to comment.