Shell

返回作業列表中的特定作業

  • August 7, 2020

如果我在 shell 中執行以下作業

-> % jobs -l
[1]    83664 suspended  nvim
[2]    84330 suspended  python
[3]    84344 suspended  python
[4]    84376 suspended  nvim
[5]  - 84701 suspended  python
[6]  + 84715 suspended  python

我怎樣才能回到第 n 份工作,假設我想回到第 4 份工作或第 1 份工作,我怎樣才能做到這一點而不必殺死之前的所有工作?

要返回作業 4,請執行:

fg %4

該命令fg告訴 shell 將作業%4移到前台。有關詳細資訊,help fg請在命令提示符下執行。

當你想暫停你正在處理的工作時,執行bg. 有關詳細資訊,help bg請在命令提示符下執行。

有關您可能想知道的更多詳細資訊,請參閱man bash標題為的部分JOB CONTROL

引用自:https://unix.stackexchange.com/questions/602421