/* Small script to invoke Ced 3.5 from Spot */

/* This script is needed since there is a bug in 
   Ced 3.5 invoker (Ed): it ignores the '-s' flag
   when Ced was not running yet. */

parse arg file .
if ~show('p','rexx_ced') then do
   address command 'C:CEd -r'
   address command 'WaitForPort rexx_ced'
   end
address command 'C:Ed' file '-s'
