update ps,kill doc

This commit is contained in:
2025-08-02 22:10:30 +03:30
parent 31639a8049
commit 3a24aaf5f9
2 changed files with 20 additions and 0 deletions

View File

@@ -63,3 +63,17 @@ ps aux
| `TIME` | Total CPU time used | | `TIME` | Total CPU time used |
| `COMMAND` | Command that started the process | | `COMMAND` | Command that started the process |
### 📑 Show List Jobs
```bash
jobs
```
### 🔄Move Process From Background To Forground
```bash
fg
```

View File

@@ -33,6 +33,12 @@ kill -9 123
*Doesnt allow cleanup — use only when necessary.* *Doesnt allow cleanup — use only when necessary.*
🗡️ *Think of it as the "katana" of kill commands.* 🗡️ *Think of it as the "katana" of kill commands.*
### 📑 Multi Process Kill
```bash
pidof <ps-name> | xargs kill -9
```
--- ---
### ⌨️ Interrupt — `SIGINT` (Signal 2) ### ⌨️ Interrupt — `SIGINT` (Signal 2)