回答:
最も簡単な方法は、実行fg
して前面に表示することです。
$ help fg
fg: fg [job_spec]
Move job to the foreground.
Place the job identified by JOB_SPEC in the foreground, making it the
current job. If JOB_SPEC is not present, the shell's notion of the
current job is used.
Exit Status:
Status of command placed in foreground, or failure if an error occurs.
または、bg
バックグラウンドで続行させるために実行できます。
$ help bg
bg: bg [job_spec ...]
Move jobs to the background.
Place the jobs identified by each JOB_SPEC in the background, as if they
had been started with `&'. If JOB_SPEC is not present, the shell's notion
of the current job is used.
Exit Status:
Returns success unless job control is not enabled or an error occurs.
を押しただけの場合Ctrl Z、ジョブを元に戻すにfg
は引数なしで実行します。
fg
引数を必要としません。ちょうどヒットしたら、同じターミナル^Z
で実行fg
すると、最初のジョブが戻されます。
fg telnet
。それはTerminated
、おそらく私の以前のkill
cmdのb / c と言った。