# Managing Processes

### List currently running processes

```bash
ps aux
```

### End a process

```bash
kill -signal pid
```
