Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site alice.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!alice!ark From: ark@alice.UUCP (Andrew Koenig) Newsgroups: net.unix,net.bugs Subject: Re: echo command always prints its arguments Message-ID: <3519@alice.UUCP> Date: Tue, 2-Apr-85 00:36:50 EST Article-I.D.: alice.3519 Posted: Tue Apr 2 00:36:50 1985 Date-Received: Tue, 2-Apr-85 08:21:31 EST References: <797@u1100a.UUCP> Organization: Bell Labs, Murray Hill Lines: 18 Xref: watmath net.unix:4090 net.bugs:583 > On every UNIX system I have ever used, there is no way to prevent > the echo command from printing its arguments. I would like to > propose a "-q" option to echo which tells it to be quiet and go about > its work without printing its arguments. > -- > > Scott Orshan > Bell Communications Research > 201-981-3064 > {ihnp4,allegra,bellcore,pyuxww}!u1100a!sdo > This option is unnecessary because you can obtain the equivalent effect by redirecting the standard output: echo $args >/dev/null Doing it this way has the advantage of greater portability, too.