home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cment.zip / RC2RES.CMD < prev    next >
OS/2 REXX Batch file  |  1994-05-19  |  672b  |  21 lines

  1. /******************************************************************************\
  2. *                                                                              *
  3. *                        Compile .RC file to .RES                             *
  4. *           Copyright (C) 1994, The Masterpiece Software Company               *
  5. *                                                                              *
  6. \******************************************************************************/
  7.  
  8.  
  9.  
  10. res = Value(RC,,OS2ENVIRONMENT);
  11.  
  12. If   res = ''
  13. Then res = 'RC.EXE -r';
  14.  
  15. Say  ;
  16. Say  '====>' Date('O') Time() res Arg(1) '. . .';
  17.  
  18. '@'||res Arg(1) '2>&1';
  19.  
  20. Exit 0;
  21.