home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Cruncher / XPK_U310.LZX / xpk_User / Arexx / SetOption.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1996-10-19  |  249 b   |  11 lines

  1. /* Send option to XFH device.
  2.  *
  3.  * Usage: rx SetOption <device> <option> <value>
  4.  *
  5.  * For example: rx SetOption XDH1 PACKMODE BLZW
  6.  */
  7.  
  8. PARSE ARG unit option value rest
  9. ADDRESS (''||unit)    /* Arexx wierdness... */
  10. 'setoption' option||'='||value
  11.