I have the pid of a running process in freebsd. How do I obtain its current directory?
|
|
|
|
|
|
|
/proc/$PID/cwd contains a symlink to the programmes current working directory. |
||||
|
|
|
You can get the inode number of the current working directory with
It looks like lsof will give you a human readable form of the current working directory, but we don't have that installed on any of the local FreeBSD machines, so I can't verify that. |
||
|
|
|
|
fstat can find the inode number and filesystem, and find can find the correct directory. Try this:
When run as non-root, find will probably output quite a few "Permission denied" messages which can be avoided by inserting |
||
|
|
