home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / new / comm / fido / spot / rexx / startced.spot < prev    next >
Text File  |  1993-12-21  |  347b  |  13 lines

  1. /* Small script to invoke Ced 3.5 from Spot */
  2.  
  3. /* This script is needed since there is a bug in 
  4.    Ced 3.5 invoker (Ed): it ignores the '-s' flag
  5.    when Ced was not running yet. */
  6.  
  7. parse arg file .
  8. if ~show('p','rexx_ced') then do
  9.    address command 'C:CEd -r'
  10.    address command 'WaitForPort rexx_ced'
  11.    end
  12. address command 'C:Ed' file '-s'
  13.