5 lines
120 B
Bash
5 lines
120 B
Bash
#!/bin/bash
|
|
# 强制无缓冲输出,确保日志立即显示在终端
|
|
export PYTHONUNBUFFERED=1
|
|
exec python -u run.py
|