Date: Sun, 18 Apr 1999 14:16:39 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Tobias Weber cc: djgpp AT delorie DOT com Subject: Re: cat.exe: standard output: Invalid argument (EINVAL) ?? In-Reply-To: <3718be27.18297722@personalnews.de.uu.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 17 Apr 1999, Tobias Weber wrote: > I've got a perl wich does `cat $fn` (backticks!) and works perfectly > well on linux. > On w95 all I get is > cat.exe: standard output: Invalid argument (EINVAL) If you invoked the above command from the ported Bash, then the most probable reason is that your TMPDIR variable in the environment is not defined or points to an invalid directory. Bash needs that because `command` expansion goes through a temporary file. This is explained in the DJGPP FAQ list, section 6.11, btw.