home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / lang / gofer223.lha / gofereditor.Rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1992-01-09  |  291 b   |  15 lines

  1. /* Start C:Ed and jump to specific line no. */
  2.  
  3. parse arg line file rest
  4.  
  5. edscript = 'M ' || line
  6.  
  7. if open(f,'t:gofer_ed_startup','WRITE') then do
  8.   call writeln(f,edscript)
  9.   call Close(f)
  10.   address command 'ed from' file 'with t:gofer_ed_startup'
  11. end
  12. else address command 'ed from' file
  13.  
  14.  
  15.