mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-06-02 00:57:41 +08:00
创建scripts目录,专门放调用脚本
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#关闭服务
|
#关闭服务
|
||||||
|
cd `dirname $0`/..
|
||||||
export BASE_DIR=`pwd`
|
export BASE_DIR=`pwd`
|
||||||
pid=`ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'`
|
pid=`ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'`
|
||||||
if [ -z "$pid" ] ; then
|
if [ -z "$pid" ] ; then
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#后台运行Chat_on_webchat执行脚本
|
#后台运行Chat_on_webchat执行脚本
|
||||||
|
|
||||||
|
cd `dirname $0`/..
|
||||||
export BASE_DIR=`pwd`
|
export BASE_DIR=`pwd`
|
||||||
echo $BASE_DIR
|
echo $BASE_DIR
|
||||||
|
|
||||||
14
scripts/tout.sh
Executable file
14
scripts/tout.sh
Executable file
@@ -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"
|
||||||
Reference in New Issue
Block a user