Skip to content

Commit 9e404fc

Browse files
committed
[1.5. Process Monitoring Operations] translated fix #7
1 parent a25eded commit 9e404fc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -917,29 +917,30 @@ whois domain
917917
</table>
918918

919919
### a. `kill`
920-
Kills (ends) the processes with the ID you gave.
920+
指定した ID でプロセスを Kill ( 終了 ) する。
921921
```bash
922922
kill PID
923923
```
924924

925925
### b. `killall`
926-
Kill all processes with the name.
926+
すべてのプロセスを名前で削除する。
927927
```bash
928928
killall processname
929929
```
930930

931931
### c. &
932-
The `&` symbol instructs the command to run as a background process in a subshell.
932+
`&` シンボルは、コマンドがサブシェルのバックグラウンドプロセスとして実行されるように指示する。
933933
```bash
934934
command &
935935
```
936936

937937
### d. `nohup`
938-
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.
938+
nohup は "No Hang Up" の略。
939+
シェルからログアウトした後、バックグラウンドで実行を継続できるコマンド/プロセスまたはシェルスクリプトを実行できる。
939940
```bash
940941
nohup command
941942
```
942-
Combine it with `&` to create background processes
943+
`&` と組み合わせてバックグラウンドプロセスを作成する
943944
```bash
944945
nohup command &
945946
```

0 commit comments

Comments
 (0)