7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

シェルで実行中のプロセスを後からバックグラウンドに切り替える

Posted at

コマンドの末尾に & をつけて実行するとバックグラウンドでプロセスを実行できる

しかし,つけ忘れた時とかに面倒な場合がある

実行してしまった後でも Ctrl z でプロセスの一時停止をしてから
bg コマンドでバックグラウンドに切り替える事ができる

$ npm run start
> pyonpyon@0.0.0 start /var/www/hoge
^Z
[1]+  停止                  npm run start
$ bg
[1]+ npm run start &
7
6
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
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?