Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Open files per process via lsof

by grinder (Bishop)
on May 05, 2004 at 13:33 UTC ( [id://350764]=CUFP: print w/replies, xml ) Need Help??

lsof is a tool to LiSt Open Files. It's a handy tool to have when you need to find out why you can't dismount a device, or see if a process is about to exceed its maximum number of allowed file handles. (Here's the project homepage).

But the output is verbose. If you just want the number of open files, and the process name and pid, the following one-liner performs a nice summary.

lsof | perl -lane '$x{"$F[0]:$F[1]"}++; END { print "$x{$_}\t$_" for sort {$x{$a}<=>$x{$b}} keys %x}'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://350764]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-16 18:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found