1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2024-12-12 10:45:00 +02:00

Fix a typo

This commit is contained in:
Eric Guirbal 2017-11-03 01:16:01 +01:00
parent 1003f5f77b
commit e45180bf45

View File

@ -109,7 +109,7 @@ Notes:
- Use `nohup` or `disown` if you want a background process to keep running forever.
- Check what processes are listening via `netstat -lntp` or `ss -plat` (for TCP; add `-u` for UDP) or `lsof -iTCP -sTCP:LISTEN -P -n` (which also works on OX X).
- Check what processes are listening via `netstat -lntp` or `ss -plat` (for TCP; add `-u` for UDP) or `lsof -iTCP -sTCP:LISTEN -P -n` (which also works on OS X).
- See also `lsof` and `fuser` for open sockets and files.