I'm using the following command to get a list of pipes:
lsof | grep PIPE
I want to know what the values of the FD column mean (the 5th one https://i.sstatic.net/zkjCn.png). I think that r
and w
mean read and write, respectively, but what does the number which follows each of these chars means?
I know that FD means File Descriptor, what I want to figure out is what means the values shown in the column, like the 3r, 16w, 20r, etc.