Fix grammar of lsof

This commit is contained in:
Shadab Zafar 2016-09-27 22:43:54 +05:30
parent 809c6d77bc
commit cdf240b70e
1 changed files with 7 additions and 7 deletions

View File

@ -4,16 +4,16 @@ sudo lsof -i4
# List all IPv6 network files
sudo lsof -i6
# To find listening ports
lsof -Pnl +M -i4
# To list all open sockets
# List all open sockets
lsof -i
# To find which program is using the port 80
# List all listening ports
lsof -Pnl +M -i4
# Find which program is using the port 80
lsof -i TCP:80
# To show connections to a specific host
# List all connections to a specific host
lsof -i@192.168.1.5
# List all processes accessing a particular file/directory
@ -28,7 +28,7 @@ lsof -c <command-name>
# List all files a process has open
lsof -p <pid>
# Lists all files open mounted at /mount/point.
# List all files open mounted at /mount/point.
# Particularly useful for finding which process(es) are using a
# mounted USB stick or CD/DVD.
lsof +f -- </mount/point>