Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site ucbvax.ARPA Path: utzoo!watmath!clyde!burl!ulysses!ucbvax!info-vax From: info-vax@ucbvax.ARPA Newsgroups: fa.info-vax Subject: Re: sys vs batch jobs Message-ID: <9044@ucbvax.ARPA> Date: Sat, 13-Jul-85 06:32:37 EDT Article-I.D.: ucbvax.9044 Posted: Sat Jul 13 06:32:37 1985 Date-Received: Sun, 14-Jul-85 08:26:27 EDT Sender: daemon@ucbvax.ARPA Organization: University of California at Berkeley Lines: 17 From: Bill BlackwellKathy, Perhaps what you want to do is suppress echoing of the login command procedure, but still execute it. You can do this by adding a "V = F$VERIFY(0)" at the beginning of SYLOGIN.COM and "V = F$VERIFY(V)" at the end. When an interactive job logs in, VERIFY is set off. When a batch job logs in VERIFY is set on. You can explicitly control VERIFY (echoing of commands in command procedures) with the "SET VERIFY" and "SET NOVERIFY" commands or with the lexical functions illustrated above. The advantage of the function is that it returns the current state so that you can restore it later. -- Bill