home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem - GO.BAT - used to display the INTRO.TXT file and then start METRIC-X
- cls
- echo
- echo ╔═══════════════════════════════════════════════════════════╗
- echo ║ Welcome to METRIC-X (tm) Metric Conversion Shareware ║
- echo ╚═══════════════════════════════════════════════════════════╝
- echo
- echo Member: Association of Shareware Professionals (ASP)
- echo
- echo Author Memberships include: IEEE, ANMC & USMA
- echo
- echo ┌─────────────────────────────────────────────────────────────┐
- echo │ This DOS Batch file will first display the INTRO.TXT file │
- echo │ and will then run the METRIC-X program (the MX.EXE file). │
- echo └─────────────────────────────────────────────────────────────┘
- echo Ctrl+C to ABORT & EXIT to DOS
- echo
- echo
- pause
- cls
- type INTRO.TXT
- pause
- MX
- cls
-