I want to transform "/foo/bar/.." to "/foo"
Is there a bash command which does this?
|
feedback
|
|
Try Update:
| |||||||||||||
feedback
|
|
if you're wanting to chomp part of a filename from the path, "dirname" and "basename" are your friends, and "realpath" is handy too.
Edit Realpath appears not to be standard issue. The closest you can get with the stock standard is
Realpath appears to come from debian, and is not part of coreutils: http://packages.debian.org/unstable/utils/realpath Which was originally part of the DWWW package. ( also available on gentoo as app-admin/realpath )
Works the same as
in that it doesn't need the path to actually exist to normalise it. | |||||
feedback
|
|
I don't know if there is a direct bash command to do this, but I usually do
and it works well. | |||||||||||||||
feedback
|
|
As Adam Liss noted
If you want it to resolve symlinks, just replace | |||
feedback
|
|
Perhaps this works as well, and is portable:
| ||||
|
feedback
|
|
Talkative, and a bit late answer. I need to write one since I'm stuck on older RHEL4/5. I handles absolute and relative links, and simplifies //, /./ and somedir/../ entries.
| |||
|
feedback
|
|
My recent solution was:
Based on the answer of Tim Whitcomb. | ||||
|
feedback
|
/foo/baror even/fooactually exist, or are you only interested in the string manipulation aspect according to path name rules? – Chen Levy Jul 27 '10 at 5:36