This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: set HOME environment


--- Guansong Zhang <guansong@hotmail.com> wrote:
> Hi,
> 
> I used to used the following line to set HOME and CYGWIN in bash.bat
> 
> set HOME=%USERPROFILE%
> set CYGWIN=tty ntea
> 
> So I don't need to use mouse click to change env
> 
> I don't know when bash.bat is changed to use --login -i
> 
> but it will be a problem if my system dir is not C: it seems bash can not
> set the HOME in this case.
> 
> I modify the bat to this, (in this case e: is my system drive)
> 
> @echo off
> 
> set HOME=%USERPROFILE%
> set CYGWIN=tty ntea
> 
> rem e:
> rem chdir \cygwin\bin
> 
> chdir /d %USERPROFILE%
> 
> e:\cygwin\bin\bash --login -i
> 
> I still get
> 
> [: too many arguments
> bash: cd: /cygdrive/e/Documents: No such file or directory
> 
> As error message. but everything else seems OK. Hope no one need to do this
> change next time.
> 

This appears to be the problem of having white space in your variables.  Make
sure the values are quoted.  See the archives for further discussions.

Is this FAQed yet?

Cheers,

=====
--- <http://earniesystems.safeshopper.com> ---
   Earnie Boyd: <mailto:earnie_boyd@yahoo.com>
            __Cygwin: POSIX on Windows__
Cygwin Newbies: <http://gw32.freeyellow.com/>
           __Minimalist GNU for Windows__
  Mingw32 List: <http://www.egroups.com/group/mingw32/>
    Mingw Home: <http://www.mingw.org/>

__________________________________________________
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]