Search Results

-3
votes

how do you normalize a file path in bash?

One way to do it with sed: echo "/foo/bar/jalla" | sed -e 's/^\(\/[^\/]*\).*$/\1/' …