vote up 1 vote down star

On a GNU system I would just use readlink -f $SOME_PATH, but Solaris doesn't have readlink.

I'd prefer something that works well in bash, but other programs are ok if needed.

Edit: The best I've come up with so far uses cd and pwd, but requires some more hackery to deal with files and not just directories.

cd -P "$*"
REAL_PATH=`pwd`
flag

1 Answer

vote up 1 vote down check

Does this help?

"Canonical Path of File in Bash" on PublicObject.com

link|flag
Ah yes, that'll do it. – alberge Aug 7 at 15:12

Your Answer

Get an OpenID
or

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