Search Results

1
vote

How can I get the behavior of GNU’s readlink -f on a Mac?

"readlink -f" does two things: It iterates along a sequence of symlinks until it finds an actual file. It returns that file's canonicalized name---i.e., its absolute p …
1
vote

freebsd: current dir of running process by process id

You can get the inode number of the current working directory with fstat -p $PID It looks like lsof will give you a human readable form of the current working dir …