home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / arexx / misc_arexx / stdin.rexx < prev    next >
OS/2 REXX Batch file  |  1996-11-13  |  214b  |  14 lines

  1. /*  
  2. This Arexx script demonstrates how the Standard I/O channels work... \X/'96
  3.  
  4. Start it: 
  5.         RX StdIn.rexx <anyfile(text) >CON:  
  6.  
  7. */
  8.  
  9.  
  10.  
  11. do while eof(stdin)~=1
  12.     Ting = Readln(STDIN)
  13.     Call writeln(STDOUT,Ting)
  14. end