home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / x-evd43.lha / EasyVideo / Rexx / EV_BefehlDatum.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-09-30  |  240 b   |  19 lines

  1. /* RexxStart für EasyVideo
  2.    (c) Jörg Trahm
  3.  
  4.     setze das heutige Datum ein
  5.  
  6. */
  7.  
  8.  
  9. call addlib('rexxsupport.library',0,-30)
  10. parse arg PortName
  11. address(PortName)
  12. options results
  13.  
  14. EV_Setze "!Datum=" || translate(date(European),".","/")
  15.  
  16. exit
  17.  
  18.  
  19.