Date: Sun, 10 Jun 2001 20:08:14 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "Nathan Smith" Message-Id: <2110-Sun10Jun2001200813+0300-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <9fvujt$6as54$1@ID-86525.news.dfncis.de> (stryyker16@hotmail.com) Subject: Re: Send to >> References: <9fvujt$6as54$1 AT ID-86525 DOT news DOT dfncis DOT de> 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 > From: "Nathan Smith" > Newsgroups: comp.os.msdos.djgpp > Date: Mon, 11 Jun 2001 00:01:28 +1000 > > I was hoping of some work around in my code or something (using DJGPP to > compile it). I don't think there's any way to work around the problem. I'm guessing that what you see us the fundamental 126-character limitation on DOS command-line length. If you are willing to invoke the programs from the DOS prompt, instead of using the "Send To" menu, and if the program you need to run is a DJGPP program, then you could use wildcard characters to specify many files in just a few dozen characters. For example, a command line such as "frobnicate .../*.[ch]" will invoke the fictitious command `frobnicate' on all .c and .h file in the current directory and all of its subdirectories, recursively.