Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
383B

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