I want to transform "/foo/bar/.." to "/foo"
Is there a bash command which does this?
|
4
|
|
|
|
|
|
Try Update:
|
||||||||
|
|
|
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. |
|||
|
|
|
|
I don't know if there is a direct bash command to do this, but I usually do
and it works well. |
||||||||||
|
|
|
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.
|
||
|
|
|
|
One way to do it with sed:
|
||
|
|