1.基本概念
lsof -s :显示进程打开的文件的当前大小
lsof -o :显示进程打开的文件的offset
注意:The -o and -s options are mutually exclusive; they can't both be specified,也就是 -s、-o不能同时使用
2.查看进程打开的文件大小
lsof -p $pid -s | grep "access.log"
3.查看进程打开的文件offset
lsof -p $pid -o | grep "access.log"
第二个图的数字比较大,是因为文件一直在被写入
0x:16进制显示
0t:10进制显示