如何将后台工作带到前台


27

在Linux / shell中,如何将后台作业置于前台,反之亦然?

Answers:


44

您使用Ctrl+ ZSIGTSTP还是SIGSTOP将其发送到后台?如果是这样,您可以使用以下命令将其放回前台

 fg

要获取所有已停止的作业和后台作业的列表,请使用

jobs

简单易用的答案,我喜欢这种风格。
janwen

21

如果您有一系列后台作业(如“ jobs”命令所示),则可以使用

fg%

number工作编号在哪里。

例如

jobs

[1]    suspended  top
[2]  - suspended  top
[3]  + suspended  top

fg %2
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.