home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / fr / mcshow10.exe / DOCS.BAT next >
DOS Batch File  |  1994-10-10  |  2KB  |  67 lines

  1. @echo off
  2. cls
  3. if "%1"=="" goto explications
  4. goto lancements_docs
  5. :explications
  6. echo Si vous désirez consulter une des documentations, placez-vous dans le 
  7. echo sous répertoire adéquat du répertoire DOC et lancez le fichier BAT s'y 
  8. echo trouvant. Pour DETCOOR et PURGETXT, placez vous dans le répertoire
  9. echo adéquat du répertoire OUTILS et lancez DETCOOR.EXE ou PURGETXT.EXE.
  10. echo.
  11. echo Ou tout simplement exécutez DOCS avec un des paramètres suivants...
  12. echo.
  13. echo DOCS MC-SHOW    : Documentation de MC-SHOW
  14. echo.
  15. echo DOCS TXTCOUL    : Documentation de TXTCOUL
  16. echo DOCS DESIGN     : Documentation de DESIGN
  17. echo DOCS DETCOOR    : Documentation de DETCOOR
  18. echo DOCS PURGETXT   : Documentation de PURGETXT
  19. echo.
  20. goto fin
  21. :lancements_docs
  22. if "%1"=="mc-show" goto mc-show
  23. if "%1"=="MC-SHOW" goto mc-show
  24. if "%1"=="txtcoul" goto txtcoul
  25. if "%1"=="TXTCOUL" goto txtcoul 
  26. if "%1"=="design"  goto design
  27. if "%1"=="DESIGN"  goto design
  28. if "%1"=="detcoor" goto detcoor
  29. if "%1"=="DETCOOR" goto detcoor
  30. if "%1"=="purgetxt" goto purgetxt
  31. if "%1"=="PURGETXT" goto purgetxt
  32. echo Paramètre inconnu...
  33. echo.
  34. goto fin
  35.  
  36. :mc-show
  37. cd doc\mc-show\exe
  38. command /c mcdoc.bat
  39. cd ..\..\..
  40. goto fin
  41.  
  42. :txtcoul
  43. cd doc\txtcoul\exe
  44. command /c couldoc.bat
  45. cd ..\..\..
  46. goto fin
  47.  
  48. :design
  49. cd doc\design\exe
  50. command /c desdoc.bat
  51. cd ..\..\..
  52. goto fin
  53.  
  54. :detcoor
  55. cd outils\detcoor
  56. detcoor.exe
  57. cd ..\..
  58. goto fin
  59.  
  60. :purgetxt
  61. cd outils\purgetxt
  62. purgetxt.exe
  63. cd ..\..
  64.  
  65. :fin
  66.  
  67.