It is my first Post here so let me say Hello to the stackoverflow community before starting !
Here is my Problem :
- i want to declare a PATH as an environment variable in Cygwin
- then i want to be able to use this variable in any command
- the difficulties comes when i have space character in the PATH
Here is what i try without sucess :
$ export MYPATH=/cygdrive/c/Program\ Files/Autodesk/Maya2011/
$ echo $MYPATH
$ /cygdrive/c/Program Files/Autodesk/Maya2011/
$ cd $MYPATH
$ bash: cd: /cydrive/c/Program: No such file or directory
i get excatly the same Error with all those various synthax
$ export MYPATH="/cygdrive/c/Program Files/Autodesk/Maya2011/"
idem with this one
$ export MYPATH=$MYPATH"/cygdrive/c/Program Files/Autodesk/Maya2011/"
I have no more ideas ... so if you guys can help me , it would be great !
Cheers
sk