Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watmath!clyde!rutgers!ames!ucbcad!ucbvax!decvax!tektronix!tekcrl!tekgvs!keithe From: keithe@tekgvs.UUCP Newsgroups: comp.unix.questions Subject: Re: Suppressing the message of the day. Message-ID: <2296@tekgvs.TEK.COM> Date: Fri, 15-May-87 18:42:41 EDT Article-I.D.: tekgvs.2296 Posted: Fri May 15 18:42:41 1987 Date-Received: Sat, 16-May-87 21:33:54 EDT References: <15452@brunix.UUCP> <386@quacky.UUCP> <1394@ihdev.ATT.COM> Reply-To: keithe@tekgvs.UUCP (Keith Ericson) Organization: Tektronix, Inc., Beaverton, OR. Lines: 18 In article <1394@ihdev.ATT.COM> pdg@ihdev.UUCP (Joe Isuzu) writes: > >Good manual page, Dave. Agreed. If you're gonna' install it where neophytes might make use of it, alter the line describing the usage of find: escape the backslash (which escapes the semicolon) so ms (nroff, whatever) doesn't delete it. IN OTHER WORDS: find /etc/motd -newer $HOME/.motd -exec cat {} \; has to be changed to find /etc/motd -newer $HOME/.motd -exec cat {} \\; (Guess how yours truly found THIS out... :-? ) keith