lsof命令解析进程
1
2
3
4
5
6
7
8
9
10
11
12
13
lsof abc.txt             //显示开启文件abc.txt的进程

lsof -c abc //显示abc进程现在打开的文件

lsof -c -p 1234 //列出进程号为1234的进程所打开的文件

lsof +d /usr/local/ //显示目录下被进程开启的文件

lsof +D /usr/local/ //同上,但是会搜索目录下的目录,时间较长

lsof -i //用以显示符合条件的进程情况
lsof -i[46] [protocol][@hostname|hostaddr][:service|port]

使用后发现对文本文件、图片这样的文件不适用,对可执行文件适用。