# # lsof.txt # # # list all open files lsof # # list all open Internet, x.25 (HP-UX), and UNIX domain files lsof -i -U # # # list all open IPv4 network files in use by the process whose PID is 1234 lsof -i 4 -a -p 1234 # # # list all files using any protocol on any port of mace.cc.purdue.edu lsof -i @mace.cc.purdue.edu # # find an IP version 4 socket file by its associated numeric dot-form address lsof -i@128.210.15.17 # # lsof -ni # # # End of file