mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
8 lines
151 B
Text
8 lines
151 B
Text
# List all ipv4 network files
|
|
sudo lsof -i4
|
|
|
|
# To find listening ports:
|
|
lsof -Pnl +M -i4
|
|
|
|
# To find which program is using the port 80:
|
|
lsof -i TCP:80
|