[[email protected] hoge]$ ./test.sh
#Ctrl+z を押下する
[1]+ Stopped ./test.sh
[[email protected] hoge]$ jobs #ジョブを確認
[1]+ Stopped ./test.sh
[[email protected] hoge]bg 1
[1]+ ./test.sh &
[[email protected] hoge]$ jobs #ジョブを確認
[1]+ Running ./test.sh &
[[email protected] hoge]fg 1 #バックグラウンドからフォアグラウンド
./test.sh
※「bg 1」、「fg 1」の1は省略すると、直近で止めたジョブを操作