I have larger shell script which handles different things.
It will get it's own location by the following...
BASEDIR=`dirname $0`/..
BASEDIR=`(cd "$BASEDIR"; pwd)`
then BASEDIR will be used create other variables like
REPO="$BASEDIR"/repo
But the problem is that this shell script does not work if the path contains spaces where it is currently executed.
So the question is: Does exist a good solution to solve that problem ?
bashanddash(what Ubuntu uses forsh), in a directory whose parent directory's name has spaces. It appears to work just fine. What happens if you run the commands from a terminal in a problematic directory, followed byecho "$REPO"? My guess is that you forgot to quote"$REPO"somewhere. – Joey Adams Dec 28 '11 at 17:24$0is certainly a good idea. A more complete example would be helpful. – Sorpigal Dec 28 '11 at 19:43