You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -917,29 +917,30 @@ whois domain
917
917
</table>
918
918
919
919
### a. `kill`
920
-
Kills (ends) the processes with the ID you gave.
920
+
指定した ID でプロセスを Kill ( 終了 ) する。
921
921
```bash
922
922
kill PID
923
923
```
924
924
925
925
### b. `killall`
926
-
Kill all processes with the name.
926
+
すべてのプロセスを名前で削除する。
927
927
```bash
928
928
killall processname
929
929
```
930
930
931
931
### c. &
932
-
The `&`symbol instructs the command to run as a background process in a subshell.
932
+
`&`シンボルは、コマンドがサブシェルのバックグラウンドプロセスとして実行されるように指示する。
933
933
```bash
934
934
command&
935
935
```
936
936
937
937
### 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.
0 commit comments