From 9e404fc0c28e1b44751af78f8dd584d359bedb7d Mon Sep 17 00:00:00 2001 From: itooww Date: Sun, 18 Jun 2017 23:32:59 +0900 Subject: [PATCH] [1.5. Process Monitoring Operations] translated fix #7 --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3ba255e..deb2e0a 100644 --- a/README.md +++ b/README.md @@ -917,29 +917,30 @@ whois domain ### a. `kill` -Kills (ends) the processes with the ID you gave. +指定した ID でプロセスを Kill ( 終了 ) する。 ```bash kill PID ``` ### b. `killall` -Kill all processes with the name. +すべてのプロセスを名前で削除する。 ```bash killall processname ``` ### c. & -The `&` symbol instructs the command to run as a background process in a subshell. +`&` シンボルは、コマンドがサブシェルのバックグラウンドプロセスとして実行されるように指示する。 ```bash command & ``` ### d. `nohup` -nohup stands for "No Hang Up". This allows to run command/process or shell script that can continue running in the background after you log out from a shell. +nohup は "No Hang Up" の略。 +シェルからログアウトした後、バックグラウンドで実行を継続できるコマンド/プロセスまたはシェルスクリプトを実行できる。 ```bash nohup command ``` -Combine it with `&` to create background processes +`&` と組み合わせてバックグラウンドプロセスを作成する ```bash nohup command & ```