home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
cons-010.zip
/
Console
/
examples
/
Hide.cmd
next >
Wrap
OS/2 REXX Batch file
|
1997-07-30
|
293b
|
14 lines
/* rexx */
'@echo on'
call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
call SysLoadFuncs
say 'this example script will hide console window for five seconds'
call charout , 'press Enter to continue...'
pull junk;
'console -ov-'
call SysSleep 5;
'console -ov+'