lsof - restrict output to physical files only - how?

Solution 1:

Just looked through some man pages, it appears you use the command:

sudo lsof /

This will list all open files in the / directory, which is everything on a Linux filesystem. Just tested and it shows only REG and DIR.

More examples:

lsof -a -d 0-999 -c <command name> /
lsof -a -d 0-999 -p <pid> /

0-999 limits it to files with a file descriptor number.

Solution 2:

There might be a switch, but if you don't mind filtering it through grep, you could do sudo lsof | egrep 'REG|DIR' , assuming by "physical files" you mean regular files and directories.

See the OUTPUT :: TYPE section of the man page man lsof for all the types that might be in that column.


Solution 3:

This is what I did which worked perfectly for me:

lsof -F n -p 12501 | grep ^n/ | cut -c2- | sort -u

The -F n option to lsof will cause it to only print out the names of the open files. Each output line that has the name of an open file will start with the single character n followed immediately by the name. Regular files will always be the absolute, fully-qualified name of the file. The grep ^n/ will select only those lines with a name starting with a / (meaning an absolute, fully-qualified file name); thus eliminating things like open ports, sockets, pipe (like FIFOs), etc. The cut -c2- will eliminate the first character, the n, leaving only the file name. Then finally, the sort -u will eliminate any duplicate entries.

One caveat, this will include files that are not regular as long as their name starts with a /. For example, all files starting with the following would be included:

  • /dev
  • /proc
  • /sys

And there may be others depending on your OS.

Tags:

Linux

Lsof