I want to transform /foo/bar/.. to /foo
Is there a bash command which does this?
Edit: in my practical case, the directory does exist.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
if you’re wanting to chomp part of a filename from the path, ‘dirname’ and ‘basename’ are your friends, and ‘realpath’ is handy too.
realpathalternativesIf
realpathis not supported by your shell, you can tryAlso
Works the same as
in that the path doesn’t need to exist to be normalized.