0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Linux][command] プロセス管理_ジョブ管理_&, nohup, fg, bg

Posted at

ジョブの管理

&

# updatedb &
コマンド例 説明
updatedb & updatedb コマンドをバックグラウンドで実行します。シェルは即座に次の入力を受け付けます。

nohupコマンド

# nohup コマンド [引数] &
コマンド例 説明
nohup ./script.sh & script.shをバックグラウンドで実行し、ターミナルを閉じてもプロセスが継続します。

fgコマンド

# fg ジョブ番号
コマンド例 説明
fg %1 ジョブ番号1のジョブをフォアグラウンドで再開します。

bgコマンド

# bg ジョブ番号
コマンド例 説明
bg %1 ジョブ番号1の停止中のジョブをバックグラウンドで再開します。

Ping-t

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?