Date: Thu, 1 Mar 2001 10:36:20 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: mike friedrichs cc: djgpp AT delorie DOT com Subject: Re: bash startup In-Reply-To: <001001c0a1d3$4427bc00$af345ba5@tamu.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 28 Feb 2001, mike friedrichs wrote: > this is _bashrc, again with no changes > ____________________________________________________________ > # ~/.bashrc > > if [ "$PS1" != "" ]; then > # setting for interactive shell > CVSROOT=/usr/src/master > EDITOR='mule -w' > CDPATH="${HOME}/work;${HOME}" > TMPDIR=/tmp > export CVSROOT EDITOR CDPATH TMPDIR That's your problem, right there: TMPDIR is set to "/tmp". If you don't have "/tmp" on each and every drive on your system, pipes and other commands which use temporary files won't work. (This is explained in section 6.11 of the DJGPP FAQ list, btw.)