Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add some dirs to my PATH. Unfortunately these dirs are located in windows path containing space (like the Documents and Settings)

I've unsuccessfully tried to:

Create a variable:

43598811@E250BZD20015026 ~
$ winhome="/cygdrive/c/Documents\ and\ Settings/43598811/"

43598811@E250BZD20015026 ~
$ cd $winhome
bash: cd: /cygdrive/c/Documents\: No such file or directory    

43598811@E250BZD20015026 ~
$ cd "$winhome"
bash: cd: /cygdrive/c/Documents\ and\ Settings/43598811/: No such file or directory

Create an alias:

43598811@E250BZD20015026 ~
$ alias winhome="/cygdrive/c/Documents\ and\ Settings/43598811/"

43598811@E250BZD20015026 ~
$ winhome
bash: /cygdrive/c/Documents and Settings/43598811/: is a directory

43598811@E250BZD20015026 ~
$ cd winhome
bash: cd: winhome: No such file or directory

Use a soft link: it is working... but I don't want to use this

Any suggestion ?

share|improve this question

5 Answers

up vote 5 down vote accepted

This works:

$ winhome="/cygdrive/c/Documents and Settings/"
$ cd "$winhome"
$ pwd
/cygdrive/c/Documents and Settings
share|improve this answer
Thanks a lot! "$winhome", I would never have guessed this ! – Guillaume Dec 2 '10 at 13:15
But is there a way to avoid the "" for the evaluation ? – Guillaume Dec 2 '10 at 13:23
No, I don't think so. But that shouldn't be a problem should it? – RobS Dec 2 '10 at 14:11
Maybe it is wothing another question, but how can I use this variable in a script ? If I do desk="$winhome"/Desktop, then cd $desk is not working... – Guillaume Dec 2 '10 at 16:58
1  
@Guillaume: Use `cd "$desk". Variables that include filenames should always be quoted. – Dennis Williamson Dec 2 '10 at 18:02

If you put the path in quotation marks, you don't need to escape the spaces, but when you call cd, you need to put the variable itself in quotes to get the proper behaviour.

So your variable should simply be declared like this, but called using quotes around the variable:

~>  winhome="/cygdrive/c/Documents and Settings/43598811/"
~>  cd "$winhome"

This is because of the way variables get substituted in the shell. If you do cd winhome without the " ", it ends up looking like this once the variable get substituted:

cd /cygdrive/c/Documents and Settings/43598811/

This gets parsed as four separate arguments: cd, /cygdrive/c/Documents, and, and Settings/43598811/, which makes no sense to the shell because the directory /cygdrive/c/Documents does not exist.

share|improve this answer
have you tried it yourself ??? $winhome="/cygdrive/c/Documents and Settings/43598811/" is not working (can set, but not cd to it). – Guillaume Dec 2 '10 at 12:39
Oops! You hadn't mentioned trying that in your question, so I assumed you hadn't done it. I have fixed my answer, and actually tried it this time. ;D – Chris Cooper Dec 2 '10 at 13:39
1  
Sorry for being a little bit rude on you. This whole thing was so frustrating... – Guillaume Dec 2 '10 at 13:54
@Guillaume: No worries. I know how you feel. – Chris Cooper Dec 3 '10 at 8:24

You can use cygpath to convert Windows path into Cygwin compatible paths. It can also output the locations of some special system folders (such as Windows home directory, desktop, my documents, ...)

p="C:\Documents and Settings"
cd "$(cygpath -u "${p}")"
share|improve this answer
Thanks for the tip. However I'm still stuck with ugly command: cd "$(cygpath -u "${p}")". I wand to store that in a var and use it in other script or cmd without to have to remember the syntax... – Guillaume Dec 2 '10 at 16:57
p2="$(cygpath -u "${p}")" then cd "$p2" – Amro Dec 2 '10 at 18:01

I am a complete cwywin noob - but surely creating a symlink back to your windows home has to be an easy first step?

ie:

 wh="/cygdrive/c/Documents and Settings/Erich/My Documents"
 ln -s "$wh" wh

then you can just:

 ls wh

you could do the same thing for your desktop etc... and worry no more about the win/cyg conversion?

share|improve this answer
Yes, good idea. Thanks. – Guillaume Feb 1 '12 at 10:21

The approach with the variable should work if you defined it correctly. Yours contains backslashes for no good reason.

share|improve this answer
yeah - they look like an attempt to escape (ie quote) the spaces - but not needed since in the original post the entire path is quoted - I think if the initial paths were taken out of the double quotes the the backslashed spaces would actually make it work – ErichBSchulz Jun 14 '12 at 11:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.