You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
365B

  1. #!/bin/bash
  2. #关闭服务
  3. export BASE_DIR=`pwd`
  4. pid=`ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'`
  5. if [ -z "$pid" ] ; then
  6. echo "No chatgpt-on-wechat running."
  7. exit -1;
  8. fi
  9. echo "The chatgpt-on-wechat(${pid}) is running..."
  10. kill ${pid}
  11. echo "Send shutdown request to chatgpt-on-wechat(${pid}) OK"