From: firewind Newsgroups: comp.os.msdos.djgpp Subject: Re: PLEASE HELP!!!! Date: 24 Aug 1997 18:04:16 GMT Organization: Netcom Lines: 16 Message-ID: <5tpt30$q0u@dfw-ixnews11.ix.netcom.com> References: <33FF0F49 DOT 4F2E AT theriver DOT com> <5totbp$ps0 AT freenet-news DOT carleton DOT ca> NNTP-Posting-Host: elp-tx1-19.ix.netcom.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Paul Derbyshire wrote: > Regarding rebooting after changing the autoexec.bat: that isn't actually > necessary. Just manually run from the command line each line you added. > I.e., insert the set djgpp and path %path%;blah blah bin lines into > autoexec.bat, save the changes and exit whatever editor, then type the > same two lines at the C:\> prompt. This does not work for the PATH statement, since variables used in that manner (set PATH=%PATH%;c:\foo) are not evaluated when used from the command line. If you want to dynamically add to your path, just write a small batch file containing but one line: PATH=%path%;%1 late\fw