home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / lotus / eSuite.exe / eSuiteDPP / samples / weatherchart / doReadInit.cmd < prev    next >
OS/2 REXX Batch file  |  1998-01-06  |  1KB  |  59 lines

  1. @echo off
  2. REM
  3. REM $Log:   //reebok/xyzL/JavaComp/webpack/samples/WEATHE~1/doReadInit.cmd  $
  4. @REM 
  5. @REM    Rev 1.1   26 Nov 1997 15:42:30   jdonohue
  6. @REM Remodelled batch files to use common environment variables
  7. REM
  8.  
  9. REM
  10. REM Initialize weather data files  (called by ATstart.cmd)
  11. REM
  12.  
  13. REM
  14. REM Switch to directory for data files
  15. REM
  16.  
  17. REM This must be set by caller (ATSTART.CMD)
  18. if .%DEMODRIVE%==. goto abort
  19. if .%DEMOLOC%==. goto abort
  20. %DEMODRIVE%
  21. cd %DEMOLOC%
  22.  
  23. REM
  24. REM Delete saved log, rename current log to save
  25. REM
  26. del rweather.sav
  27. rename rweather.log rweather.sav
  28. @echo ReadWeather Log for: > rweather.log
  29. date /T                    >> rweather.log
  30.  
  31. REM
  32. REM Rename current data-set files for rolling-save of 5-days worth
  33. REM
  34. if exist *.5? del *.5?
  35. if exist *.4? ren *.4? *.5?
  36. if exist *.3? ren *.3? *.4?
  37. if exist *.2? ren *.2? *.3?
  38. if exist *.1? ren *.1? *.2?
  39. ren *.TEM *.1t
  40. ren *.HUM *.1h
  41. ren *.BAR *.1b
  42.  
  43. REM
  44. REM Create new 'empty' files
  45. REM
  46. call doMakeDat.cmd newyork     "New York"
  47. call doMakeDat.cmd losangeles  "Los Angeles"
  48. call doMakeDat.cmd detroit     "Detroit"
  49. call doMakeDat.cmd chicago     "Chicago"
  50. call doMakeDat.cmd chattanooga "Chattanooga"
  51. call doMakeDat.cmd batonrouge  "Baton Rouge"
  52. goto end
  53.  
  54. :abort
  55. @echo DEMOLOC and DEMODRIVE must be defined
  56.  
  57. :end
  58.  
  59.