home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cenvi23.zip / ISITFRI.CMD < prev    next >
OS/2 REXX Batch file  |  1995-03-28  |  751b  |  14 lines

  1. @echo OFF
  2. REM **************************************************************************
  3. REM *** IsItFri.cmd - Use CEnvi2 from a batch file to determine if today is ***
  4. REM *** ver.1         Friday.  CEnvi2 is called from one line and sets      ***
  5. REM ***               ERRORLEVEL (by its return value) to 1 if it is       ***
  6. REM ***               Friday and 0 if it is not Friday.  The batch file    ***
  7. REM ***               may then switch actions based on that ERROLEVEL      ***
  8. REM **************************************************************************
  9.  
  10. CEnvi2 "DateString = ctime(time())  return( strstr(DateString,"Fri") ? 1 : 0 )"
  11.  
  12. if ErrorLevel 1 ECHO WHOOPEE! It Is Friday
  13. if not ErrorLevel 1 ECHO Dang! It is Not Friday
  14.