瀏覽代碼

Adding -u and flag to runPython

NIX User 3 年之前
父節點
當前提交
e480f09ed5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pythonScripts/runPython.sh

+ 1 - 1
pythonScripts/runPython.sh

@@ -1,4 +1,4 @@
 #!/bin/bash
 
 
-nohup python3 $1  0<&- &> $HOME/logs/runPython.log &
+nohup python3 -u $@  0<&- &> $HOME/logs/runPython.log &