Doskey is an utility that:
DOSKEY
[/REINSTALL]
[/LISTSIZE=size]
[/MACROS[:ALL | :exename]]
[/HISTORY]
[/INSERT | /OVERSTRIKE]
[/EXENAME=exename]
[/MACROFILE=filename]
[macroname=[text]]
| Switches | Description |
|---|---|
| /REINSTALL | Installs a new copy of Doskey. |
| /LISTSIZE=size | Sets size of command history buffer. |
| /MACROS | Displays all Doskey macros. |
| /MACROS:ALL | Displays all Doskey macros for all executables which have Doskey macros. |
| /MACROS:exename | Displays all Doskey macros for the given executable. |
| /HISTORY | Displays all commands stored in memory. |
| /INSERT | Specifies that new text you type is inserted in old text. |
| /OVERSTRIKE | Specifies that new text overwrites old text. |
| /EXENAME=exename | Specifies the executable. |
| /MACROFILE=filename | Specifies a file of macros to install. |
| macroname | Specifies a name for a macro you create. |
| text | Specifies commands you want to record. |
The following are some special codes in Doskey macro definitions:
| Variable | Description |
|---|---|
| T | Command separator. Allows multiple commands in a macro. |
| 1-9 | Batch parameters. Equivalent to %1-%9 in batch programs. |
| $* | Symbol replaced by everything following macro name on command line. |
doskey /history
:: or
:: Press F7
Example with the following command history buffer:
dir /?
dir /A
dir /B
dir /C
dir /L
dir /N
dir /B
dir /OD
By typing “di” and pressing F8:
dir /OD
dir /B