home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cons-010.zip / Console / examples / Hide.cmd next >
OS/2 REXX Batch file  |  1997-07-30  |  293b  |  14 lines

  1. /* rexx */
  2.  '@echo on'
  3.  
  4.  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  5.  call SysLoadFuncs
  6.  
  7.  say 'this example script will hide console window for five seconds'
  8.  call charout , 'press Enter to continue...'
  9.  pull junk;
  10.  
  11.  'console -ov-'
  12.  call SysSleep 5;
  13.  'console -ov+'
  14.