Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

EDIT 1

I'm having problems using the arguments given. Maybe it is the way I'm passing my arguments through NSTask? Any suggestions as to how I can do this?

NSTask *file_Task = [NSTask new];
[file_Task setLaunchPath:@"/usr/sbin/lsof"];
[file_Task setArguments:[NSArray arrayWithObjects:@"+p", the_Pid, nil]];

Good Afternoon Fellow Coders....

I'm using the following command:

lsof +p 13812

to get the list of a files accessed by a process. The thing is it is giving me a lot of additional information that I don't want such as TYPE, DEVICE, etc.

Is there an argument that I can add to the above command so that I get ONLY the NAME?

Thank you, thank you thank you! :)

Eric

share|improve this question
Do you also 'only' want the files that the process has open? 'lsof' will return an entry for all open file descriptors (files, sockets, ttys, etc.) as well as the current working directory, shared libraries. – Beano Aug 27 '10 at 15:39

3 Answers

up vote 1 down vote accepted

You can use:

lsof -Fn +p 12345

This will output a list of lines, with the first being p followed by the process ID, and all following lines consisting of n followed by the file name.

If you'd like to quickly preprocess this, you can do something similar to the following:

lsof -Fn +p 12345 | tail -n +2 | cut -c2-

See the lsof man page for more information, specifically under the OUTPUT FOR OTHER PROGRAMS heading.

share|improve this answer

try:

lsof | tr -s ' ' | cut -d' ' -f9
share|improve this answer

lsof +p 9174 | awk '{ print $9 }'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.