X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f Message-ID: <3C26CF59.9AFF10B4@is.elta.co.il> Date: Mon, 24 Dec 2001 08:46:49 +0200 From: Eli Zaretskii X-Mailer: Mozilla 4.04 [en] (WinNT; I) MIME-Version: 1.0 To: Charles Sandmann CC: djgpp-workers AT delorie DOT com Subject: Re: v2.03 refresh issue - passing 3K argument list [was Re: A new bug?] References: <10112240505 DOT AA21684 AT clio DOT rice DOT edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Charles Sandmann wrote: > > testit.sh: > ./djecho "`./cat test.fil`" > > Then: > bash testit.sh > > This doesn't use make; it does fail if test.fil is big, it succeeds if > test.fil is small or bash 2.05 is used. It also succeeds if the bash > builtin echo is used or if the double quotes are removed (among lots > of other things ...) I think that's the change in glob Mark mentioned: there's a 2000-character buffer there used for globbing, and using quotes makes this a single argument that needs to fit into that buffer. We could enlarge that buffer if 2K is too small, but that's unrelated to the issue you were worried about.