Date: Thu, 22 Feb 1996 12:03:15 +0200 (IST) From: Eli Zaretskii To: Brendan Simon Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: system() echo In-Reply-To: <199602220135.MAA08555@helena.rdt.monash.edu.au> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thu, 22 Feb 1996, Brendan Simon wrote: > I use the sytem() call to invoke ghostscript to print to my bubble jet. > Can I suppress the echoing of the call to the stio. > > ie. It echos the command to the screen. Can I suppress this ??? system() doesn't echo anything. You can verify this by writing a throw-away program which just does `system ("dir")' or something. I guess the batch file you call to invoke Ghostscript is the one that does the echo. If that's true, just put @echo off there, or prepend a `@' to each line of the batch file.