home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////
- // PROGRAM: SHELL.SLT //
- // AUTHOR: Christopher Saunders //
- // DATE: April 25th 1992 //
- // //
- // INFORMATION //
- // ~~~~~~~~~~~ //
- // Now you can shell out of Telix at the touch of a //
- // function key! This script will also clear the //
- // screen to prevent any ANSI currently on your //
- // screen from "bleeding" into your DOS, thus making //
- // the screen some weird colour. If you don't know //
- // what I mean, try viewing an ANSI screen on a BBS, //
- // and then shell to DOS using the ALT-J function. //
- // You may find that the colours have turned your //
- // DOS a strange colour! DON'T PANIC! No damage //
- // whatsoever has been done...it is just annoying! //
- ///////////////////////////////////////////////////////
-
- main()
- {
- clear_scr(); // Clear the screen (to prevent bleeding)
- dos("COMMAND.COM"); // Shell to DOS
- }