home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / batch / batch.doc next >
Encoding:
Text File  |  1985-11-19  |  1.7 KB  |  45 lines

  1.  
  2.        This document was generated from file batch.FOR
  3.                                  on 20-NOV-85 at  1: 9:36
  4.  ________________________________________________________________________
  5.  ________________________________________________________________________
  6.  
  7.  
  8.          PROGRAM BATCH
  9.  C               L. R. Fortney  10/10/87
  10.  C           This programs reads the command line and writes the parameters
  11.  C       to a file BATCH.DAT.  Parameters must be separated by commas.
  12.  C       The program is useful for providing a text file to be read by
  13.  C       a redirected input to programs like F77 and F77L.  It does not
  14.  C       work with STwriter.
  15.  C
  16.  C           The following are examples of batch files for MSDOS and Gulam
  17.  C       For MSDOS from Michtron:  This file is labeled FLG.BAT and generates
  18.  C       an F77 compile, link, and execute (go) operation.  Within MSDOS it
  19.  C       is invoked by typing:  FLG mysource mylib
  20.  C       The program generates an intermediate scratch file BATCH.DAT
  21.  C
  22.  C               BATCH %1,%2
  23.  C               D:\F77 <BATCH.DAT
  24.  C               BATCH L %2,L SYSTEM,L F77.RL,F %1,g,q,y
  25.  C               D:\F77L <BATCH.DAT
  26.  C               DEL BATCH.DAT
  27.  C               %1
  28.  C
  29.  C       For the Gulam shell the same result is obtained with:
  30.  C
  31.  C               batch $1,$2
  32.  C               f77 <batch.dat
  33.  C               batch l $2,l system,l f77.rl,f $1,g,q,y
  34.  C               f77l <batch.dat
  35.  C               rm batch.dat  #(or perhaps Rm batch.dat)
  36.  C               $1
  37.  C
  38.  ________________________________________________________________________
  39. L. R. Fortney
  40. Physics Dept
  41. Duke University
  42. Durham, NC 27706
  43. Genie mail address DUKEL
  44.  
  45.