Autosave: 2024-03-17 11:00:04

This commit is contained in:
thomasabishop 2024-03-17 11:00:04 +00:00
parent 5ba5ef0e38
commit 3c795f4b20

View file

@ -17,3 +17,21 @@ $ 7890
sudo kill -9 7890 sudo kill -9 7890
# Kill the process that is running there # Kill the process that is running there
``` ```
## Alterntive
```sh
ss -ltnp | grep ':8000'
```
Returns:
```
LISTEN 0 511 [::1]:8000 [::]:* users:(("node",pid=10493,fd=34))
```
Kill with:
```
kill 10493
```