home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l076 / 1.ddi / SCRIPT.TRU < prev    next >
Encoding:
Text File  |  1986-12-08  |  1.1 KB  |  24 lines

  1. True BASIC           SCRIPT
  2.      
  3.       Type              │   Press  │
  4. ────────────────────────┼──────────┼──────────────────────────────────────────
  5.                         │          │
  6.  SCRIPT filename        │          │  to execute commands stored in file
  7.                         │          │  `filename'
  8.                         │          │
  9.  SCRIPT fn, arg1, arg2  │          │  to execute commands in file `fn', with
  10.                         │          │  two arguments `arg1' and `arg2'
  11. ────────────────────────┴──────────┴──────────────────────────────────────────
  12.  
  13. The SCRIPT command lets you execute "script files", which are
  14. files of True BASIC commands.  Like DOS batch files, they let you
  15. package a sequence of commands into a file, and then execute
  16. these commands by simply typing the script file's name.
  17.  
  18. True BASIC will begin to read lines from this file, and execute
  19. them as if you'd typed them from the keyboard.  The script
  20. file must be a text file.  
  21.  
  22. You can also "plug in" arguments to script files.  This lets you 
  23. create dummy variables which are later filled in with actual values.
  24.