HP3000-L Archives

October 2000, Week 2

HP3000-L@RAVEN.UTC.EDU

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
Chris Goodey <[log in to unmask]>
Reply To:
Chris Goodey <[log in to unmask]>
Date:
Thu, 12 Oct 2000 15:05:54 -0700
Content-Type:
text/plain
Parts/Attachments:
text/plain (30 lines)
There have been a number of suggestions on how
to capture the STDLIST for jobs. Here is what we do for some of our jobs.
Note that the cleanup is just to make the file more readable when it hits
the pc side (especially getting rid of cctl.)

!# Use Qedit to clean up stdlist file
!echo   T #!HPSPOOLID      >QCMDS
!ECHO   set keep var on   >>QCMDS
!ECHO   set lang=data     >>QCMDS
!ECHO   set keep code 0   >>QCMDS
!ECHO   set keep cctl off >>QCMDS
!ECHO   K  STDLIST,temp   >>QCMDS
!ECHO   EXIT              >>QCMDS
!RUN QEDIT.PUB.ROBELLE;INFO="USE QCMDS;E";PARM=128

And then we ftp them off to another server for archiving:

!ECHO      exitonerror                    >ftpcmds
!ECHO      open xx.xx.xx.x                >>ftpcmds
!ECHO      user testuser                  >>ftpcmds
!ECHO      password                       >>ftpcmds
!ECHO      cd stdlist                     >>ftpcmds
!ECHO      put STDLIST !filename          >>ftpcmds
!ECHO      exit                           >>ftpcmds
!RUN FTP.ARPA.SYS;STDIN=FTPCMDS
!IF !FTPLASTERR < 0 then
!  SHOWVAR FTP@
!  SETJCW JCW 32768
!ENDIF

ATOM RSS1 RSS2