Path: utzoo!attcan!uunet!zaphod.mps.ohio-state.edu!sdd.hp.com!ucsd!ucbvax!ANDREW.CMU.EDU!tpn+ From: tpn+@ANDREW.CMU.EDU (Tom Neuendorffer) Newsgroups: comp.soft-sys.andrew Subject: Re: ez fails to tidy up Message-ID: Date: 30 Oct 90 18:09:05 GMT References: Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 22 Excerpts from mail: 23-Oct-90 Re: ez fails to tidy up Bill Cattey@ATHENA.MIT.E (851) > If the README file is bit for bit exactly correct (which it often is) > then the default print command is at fault, not you. The default print > command doesn't have the '; rm -f /tmp/%s.n' in it to remove the > temporary file. By default, the print command will remove the .n files. Note the following from the print.c source file. #define print_PRINTCOMMAND "/usr/ucb/lpr -n -Ppp; rm -f /tmp/%s.n; rm -f /tmp/%s.n.dvi " /* if overridden by the profile 'printcommand' entry, the troff file (usually /tmp/%s.n) won't be automatically deleted . */ So my guess is that you have either a local or global preference or init file that is improperly overriding the default in the source without including the rm -f /tmp/%s.n command. Tom N.