소스 검색

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 &