home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / aod12.zip / README.BAT < prev    next >
DOS Batch File  |  1995-04-25  |  715b  |  40 lines

  1. @echo off
  2. :rem -- to echo a blank line, use the alt-255 character
  3.  
  4. echo  
  5. echo            
  6. echo            
  7.  
  8. if .%1. == .e. goto english
  9. if .%1. == .E. goto english
  10. if .%1. == .f. goto french
  11. if .%1. == .F. goto french
  12. if .%1. == .d. goto german
  13. if .%1. == .D. goto german 
  14. goto default
  15.  
  16. :english
  17. type readme.eng | more
  18. goto end
  19.  
  20. :french
  21. type readme.frn | more
  22. goto end
  23.  
  24. :german
  25. type readme.ger | more
  26. goto end
  27.  
  28. :default
  29. echo If you wish to see the readme file in English, type "README E"
  30. echo  
  31. echo Pour voir le fichier Readme en français, tapez "README F"
  32. echo            
  33. echo Wenn Sie die README Datei lesen möchten, geben Sie "README D" ein.
  34.  
  35. echo  
  36. echo  
  37. echo  
  38.  
  39. :end
  40.