No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
416B

  1. #!/bin/bash
  2. #后台运行Chat_on_webchat执行脚本
  3. cd `dirname $0`/..
  4. export BASE_DIR=`pwd`
  5. echo $BASE_DIR
  6. # check the nohup.out log output file
  7. if [ ! -f "${BASE_DIR}/nohup.out" ]; then
  8. touch "${BASE_DIR}/nohup.out"
  9. echo "create file ${BASE_DIR}/nohup.out"
  10. fi
  11. nohup python3 "${BASE_DIR}/app.py" & tail -f "${BASE_DIR}/nohup.out"
  12. echo "Chat_on_webchat is starting,you can check the ${BASE_DIR}/nohup.out"