0
我運行兩個腳本的nohup - 不打印所有日誌
# Script 1
nohup sh {command} &
和的nohup.out是詳細所有日誌(腳本1)
# Script 2
nohup sh {command} > {log_path} 2>&1 &
但僅nohup.out的有有限的日誌如下所示(對於腳本2),
## Script2 output
Shutdown message has been posted to the server.
Server shutdown may take a while - check logfiles for completion
如何在nohup.out中使用腳本2格式生成所有日誌。
Stack Overflow是編程和開發問題的網站。這個問題似乎與題目無關,因爲它不涉及編程或開發。請參閱幫助中心的[我可以詢問哪些主題](http://stackoverflow.com/help/on-topic)。也許[超級用戶](http://superuser.com/)或[Unix&Linux堆棧交換](http://unix.stackexchange.com/)會是一個更好的地方。 – jww
我通常在[Unix&Linux Stack Exchange](http://unix.stackexchange.com/)上詢問我的shell/nohup問題。 – jww
看起來像腳本2錯誤是重寫。嘗試刪除錯誤重定向並檢查。 – skanda