see changelog

This commit is contained in:
Eddie Runia
1999-06-16 20:41:36 +00:00
parent 90744aafb4
commit 28fa2ea3e0
2 changed files with 7 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
19990616-21:40 CET Eddie Runia
* tests/working/dosshell.prg
new version added
19990616-21:15 CET Matteo Baccan
* makefile.vc
correct updated version added

View File

@@ -6,16 +6,15 @@
//
// Warning : DOS only
//
#command ? [<xArg,...>] => QOut( <xArg> )
#command ! <cCommand> => __Run( <cCommand> )
function Main()
local cOs := Upper( OS() )
local cOs := Upper( OS() )
local cShell := GetEnv("COMSPEC")
if (at( "WINDOWS", cOs ) != 0) .or. at( "DOS", cOs ) != 0
? "About to shell to DOS.."
! GetEnv("COMSPEC")
! (cShell)
? "Hey, I am back !"
else
? "Sorry this program is for Windows and DOS only"