Message-Id: <199701142254.HAA17390@mail.st.rim.or.jp> From: "Daisuke Aoyama" To: , Subject: Re: BASH startup Date: Wed, 15 Jan 1997 07:44:48 +0900 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit >I found part of the problem, I was using "set LFN=n" instead of "LFN=n". >I expected set with no arguments to show these variable values, but it >doesn't. However, "echo $LFN" does show the value I expect. Another >example, I did: > >PS1=$HISTCMD\$ This command stores fixed value and $ as is. If you need countable number, use \! instead and quote it like this: PS1='\!\$ ' See also PROMPTING section in bash.1. (You can view by typing 'less -p ^PROMPTING $DJDIR/info/bash.1'.) >Also gcc can't find the standard include files, even though I've done: > >DJGPP=c:/djgpp_v2.01/djgpp.env Need export attribute for child process. Simple solution is like this: export DJGPP=c:/djgpp_v2.01/djgpp.env Daisuke Aoyama jack AT st DOT rim DOT or DOT jp