MKMSGF %H&i''( *m,!. character drive d: h Destructive backspace xd: Current directory (lower case) for i OS/2 line 0 HELP prompt drive d: l The < character z Shell level n Current drive HSave the current disk and directory. Usage: PUSHD [[d:]pathname] PUSHD saves the current directory on the directory stack, and if a pathname is specified on the command line, changes the disk drive and directory. HTerminate the current batch file. Usage: QUIT [value] If you specify a value, QUIT will set ERRORLEVEL to that value. HRemove one or more directories. Usage: RD [d:]path... HReboot the system. Usage: REBOOT [/V] /V Prompt for verification before rebooting. HPut a comment in a batch file. Usage: REM [comment] Everything following a REM will be ignored, including quote characters, the redirection symbols (|><) and the command separator character. HRename files or subdirectories. Usage: REN [/N /P /Q] [d:][path]filename... [d:][path]filename /N Don't actually rename the file(s) /P Prompt for confirmation /Q Quiet (don't display filenames) HRename files or subdirectories. Usage: RENAME [/N /P /Q] [d:][path]filename... [d:][path]filename /N Don't actually rename the file(s) /P Prompt for confirmation /Q Quiet (don't display filenames) HReturn from a GOSUB (subroutine) call in a batch file. Usage: RETURN The RETURN command returns from a GOSUB call to the command following the original GOSUB. HRemove one or more directories. Usage: RMDIR [d:]path... HPosition the cursor on the screen, and optionally display a message. Usage: SCREEN row column [message] HDisplay text in color. Usage: SCRPUT row column [BRIght] [BLInk] fg ON bg text row Start row column Start column fg Foreground character color bg Background character color text The text to display Valid colors are Black, Blue, Green, Red, Magenta, Cyan, Yellow, and White. HExecute a command on the specified files. Usage: SELECT [/A[:-rhsda] /C /D /O:-deginrsu /Z] command ([path]filename) /A Select files by attributes /C Display filenames in upper case /D Disable directory colorization /O Sort sequence /Z Display HPFS volumes in FAT format HDisplay, create, modify, or delete environment variables. Usage: SET [/P] [/R [d:][path]filename...] [variable=[value]] /P Pause after displaying each page /R Read environment variables from a file Entering SET with no variable or value displays the entire environment. If you don't enter a value, SET displays the value of that variable. Otherwise, the variable and value are placed in the environment. If the variable already exists, its old contents are replaced by the new value. HDisplay or set 4OS2 configuration variables. Usage: SETDOS [/C? /E? /I+|-command /M? /N? /P? /R? /S?:? /U? /V?] /C COMPOUND character /E ESCAPE character /I Disable or enable internal commands /M Line editing mode /N NOCLOBBER /P Variable parameter character /R Number of screen rows /S Cursor shape /U Filename case /V Batch echo HSave the current disk drive, directory, and environment. Usage: SETLOCAL HAllow the use of more than 10 variables in a batch file. Usage: SHIFT [n] SHIFT moves each batch file parameter "n" positions. The default value for "n" is 1. You can reverse a SHIFT by giving a negative value for "n". HStart a program in a new OS/2 session. Usage: START [title] [/BG /C /DOS[=file] /FG /FS /I /ICON=name /INV /K /L /MAX /MIN /N /PGM /PM /POS=x,y,x1,y1 /WAIT /WIN] [command ...] title Title for title bar /K Keep session /BG Start in background /L Local alias & history lists /C Transient session /MAX Start maximized /DOS DOS session; settings /MIN Start minimized file in 4OS2/32 /N Start without using 4OS2 /FG Start in foreground /PGM Next argument is program name /FS Full-screen session /PM PM application /I Inherit environment /POS Start position (x,y) and window from CONFIG.SYS size (x1, y1) in pels /ICON Use specified icon /WAIT Wait for session to end file /WIN Windowed session /INV Invisible HCopy standard input to standard output, and save a copy in the specified file(s). Usage: TEE [/A] [d:][path]filename... /A Append output to the file(s) HDisplay a block of text in a batch file. Usage: TEXT . . . ENDTEXT Both TEXT and ENDTEXT must be entered as the only command on that line. HDisplay and (optionally) set the current system time. Usage: TIME [hh:mm:ss[am|pm]] hh Hour (0 - 23) mm Minute (0 - 59) ss Second (0 - 59) If you don't enter any parameters, TIME will display the current system time and prompt for a new time. TIME defaults to 24-hour format; you can enter the time in 12-hour format by appending an "am" or "pm". HTurn the system stopwatch on and off. Usage: TIMER [/1 /2 /3 /S] [ON] ON Restart timer /1 Use timer #1 /2 Use timer #2 /3 Use timer #3 /S Display split time HDisplay the contents of the specified file(s). Usage: TYPE [/L /P] [d:][pathname]filename... /L Print line numbers preceding each line of text /P Pause after each page HRemove aliases from the alias list. Usage: UNALIAS [/Q] alias... UNALIAS * /Q Don't display an error message if the alias doesn't exist UNALIAS also accepts the wildcard character * to delete all aliases. HRemove variables from the environment. Usage: UNSET [/Q] name... UNSET * /Q Don't display an error message if the variable doesn't exist UNSET also accepts the wildcard character * to delete all variables. HDisplay the current 4OS2 and OS/2 versions. Usage: VER [/R] /R Display OS/2 and 4OS2 revision levels HDisplay, enable, or disable disk write verification. Usage: VERIFY [on | off] Entering VERIFY with no parameters will display the current VERIFY state. HDisplay the disk volume label(s). Usage: VOL [d:] ... If you don't enter a drive name, VOL displays the disk label and the volume serial number for the current drive. HDisplay text in color in a vertical column. Usage: VSCRPUT row column [BRIght] [BLInk] fg ON bg text row Start row column Start column fg Foreground character color bg Background character color text The text to display Valid colors are Black, Blue, Green, Red, Magenta, Cyan, Yellow, and White. HSet the 4OS2 window title and state. Usage: WINDOW ["title"] minimize | maximize | restore "title" Change the window title. minimize Minimize the 4OS2 window. maximize Maximize the 4OS2 window. restore Restore the 4OS2 window to its "normal" size. HCopy standard input to standard output, and then copy the specified file(s) to standard output. Usage: Y [d:][path]filename...