home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / HILFEN / PACKER / SHEZ / STUFF.DOC < prev    next >
Text File  |  1993-12-01  |  3KB  |  75 lines

  1.                     STUFF Version 1.0 by Jim Derr
  2.                       California Software Design
  3.                             P.O. Box 15248
  4.                         Santa Rosa, Ca. 95401
  5.  
  6.           Stuff is a small program designed to stuff keystrokes into
  7.           the keyboard buffer.  Up to 15 keystrokes may be stuffed
  8.           into the buffer.  Any keystrokes on the command line after
  9.           the 15 keystroke limit is reached will be ignored.
  10.  
  11.           This program is being distributed with the SHEZ package to
  12.           give users, and in particular, BBS SYSOP'S, the ability to
  13.           scan numerous compressed files searching for virus infected
  14.           programs, and optionally to strip comment records out of
  15.           .ZIP compressed files. Of course it can be used for numerous
  16.           other purposes, limited only by your imagination.
  17.  
  18.           Also included is a sample batch file called AUTOSHEZ.BAT.
  19.           This commented batch file will setup the environment
  20.           variable SHEZLOG to activate the LOG feature.  Stuff the
  21.           necessary keys to automatically run SHEZ and tag all found
  22.           files, virus check the found files, strip the comment
  23.           records out of all found .ZIP files, and exit SHEZ.
  24.           This batch file is for demonstration purposes only. Please
  25.           modify it to fit your particular needs.
  26.  
  27.           Stuff can insert any ASCII character(s) into the keyboard
  28.           buffer, plus the following special keys:
  29.  
  30.           Function keys 1 - 10
  31.           Shifted Function keys 1 - 10
  32.           Alt Function keys 1 - 10
  33.           CTRL Function keys 1 - 10
  34.           ALT A through ALT Z
  35.           CTRL A through CTRL Z
  36.           ESC key, Carriage return key, Cursor up-down-right-left,
  37.           Home and End keys.
  38.  
  39.           To stuff these special keys use the following codes, in
  40.           upper case, on the command line.
  41.  
  42.           CODES                KEYBOARD EQUIVALENT
  43.           F1 - F10             F1 - F10
  44.           #F1 - #F10           SHIFTED F1 - F10
  45.           ^F1 - ^F10           CTRL F1 - F10
  46.           ~F1 - ~F10           ALT F1 - F10
  47.           ~A - ~Z              ALT A - Z
  48.           ^A - ^Z              CTRL A - Z
  49.           ESC                  ESCAPE KEY
  50.           CR                   CARRIAGE RETURN
  51.           HM                   HOME KEY
  52.           EN                   END KEY
  53.           RT                   RIGHT CURSOR
  54.           LT                   LEFT CURSOR
  55.           UP                   UP CURSOR
  56.           DN                   DOWN CURSOR
  57.  
  58.           Entering STUFF on the command line with no parameters will
  59.           display a list of all special key codes.
  60.  
  61.  
  62.           EXAMPLES:
  63.             1) Stuff the word PMAP followed by a Carriage return:
  64.                STUFF "PMAP" CR
  65.  
  66.             2) Stuff C: carriage return, cd \work carriage return
  67.                STUFF C: CR "CD \WORK" CR
  68.  
  69.                NOTE: IF THE ASCII STRING HAS EMBEDDED BLANKS OR COMMAS
  70.                ENCLOSE THE STRING IN QUOTES.
  71.  
  72.             3) Stuff pcplus, carriage return, space, alt-d,
  73.                down cursor, carriage return.
  74.                STUFF PCPLUS CR " " ~D DN CR
  75.