1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2025-01-30 04:40:43 +02:00

Merge pull request #92 from kalbasit/patch-1

remove a duplicator `for`
This commit is contained in:
Joshua Levy 2015-06-21 00:55:24 -07:00
commit 0a2097948a

View File

@ -90,7 +90,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 for UDP).
- Check what processes are listening via `netstat -lntp` or `ss -plat` (for TCP; add `-u` for UDP).
- See also `lsof` for open sockets and files.