Q
&bash命令後
0
A
回答
3
不,他們是兩件獨立的事情。
運行python alt_pg ...
表示python
將在$PATH
和alt_pg ...
將被作爲參數傳遞給python。 Python然後查找名爲alt_pg
的文件。運行alt_pg ...
表示alt_pg
將在$PATH
中查找。後者可能會導致python運行,這取決於alt_pg
的作用。
在命令後面添加&
表示該命令在後臺運行,並且即使alt_pg
仍在運行,shell仍可繼續執行後續命令。
3
&符在分叉/後臺進程中運行進程。
7
&
在行結束處運行python alt_pg ${args}
在您的linux shell下的「背景」中;然而,腳本仍然與shell相關聯。因此,如果shell停止,腳本也會停止。
備註:您可以使用nohup python alt_pg ${args} &
來解除腳本與shell的關聯。如果您像這樣產生腳本,則腳本在註銷shell後仍然存在。
相關問題
- 1. 命令後Bash忽略#嗎?
- 2. Bash expr命令
- 3. unix bash命令
- 4. bash -x命令
- 5. 超時後bash腳本kill命令
- 6. Ubuntu:在bash命令後退出sudo?
- 7. Bash。從後臺管道命令stdout
- 8. 在bash中的每個命令之後執行命令
- 9. bash命令參數
- 10. Bash綁定命令
- 11. \!在Bash命令中
- 12. 運行bash命令
- 13. 編輯bash命令?
- 14. bash命令文件
- 15. bash for inline命令
- 16. bash命令錯誤
- 17. bash的alias命令
- 18. Linux Bash sed命令
- 19. bash命令擴展
- 20. Bash Centos7「which」命令
- 21. Linux Bash goto命令?
- 22. $「\ r」 - 命令在bash
- 23. 嵌入bash命令
- 24. bash命令XOR^anothercommand
- 25. bash命令可變
- 26. 系統命令bash
- 27. bash讀取命令
- 28. 由bash命令行
- 29. 遍歷bash命令
- 30. Bash Shell - The:命令
在後臺開始 – Denis 2012-08-03 13:35:26