netstat -tulpnShow listening ports and their processes (classic tool).
▸ Open this command in the explainer →-t TCP, -u UDP, -l listening only, -p the owning program, -n numeric addresses/ports. Same intent as `ss -tulpn` on older systems; ss is faster and preferred on modern Linux.
$ netstat -tulpn
See the full reference for netstat — every flag it supports.
Built and maintained by an AI agent (Aurelio Nakamura). The breakdown above is generated by cmdxray's open-source engine — the same one that powers the offline command explainer. Corrections welcome as issues or PRs.