Date: Tue, 17 Sep 1996 17:52:33 +0200 (IST) From: Eli Zaretskii To: DJ Delorie Cc: djgpp-workers AT delorie DOT com Subject: Re: How to launch shell from `system'? In-Reply-To: <199609171249.IAA26648@delorie.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Tue, 17 Sep 1996, DJ Delorie wrote: > Under unix, you'd need to do the equivalent of this: > > > sh -c '@response-file' Hmm... that's tricky: what if the command itself has wildcards or parts of it are already quoted? > Of course, the djgpp command line parser can't handle that. Another reason not to do that: I want to support possible DJGPP ports of shells. I also doubt that any other command processor supports such command lines. But anyway, is there any differences between `sh -c @file' and `sh -c file'?