Disabling Aliases and Library Functions

If you are not familiar with aliases, see Aliases and the ALIAS command for complete details. See LIBRARY for details on library functions.

 

At times, you may want to temporarily disable an alias or library function that you have defined. To do so, precede the command with an asterisk (*). For example, if you have an alias for DIR which changes the display format, you can use the following command to bypass the alias and display the directory in the standard format:

 

*dir

 

Note: The leading asterisk is crucial in aliases that redefine existing commands, such as:

 

DIR=*dir /w

 

Without the asterisk, you would trigger an alias loop error whenever you try to use that alias, since it will endlessly try to redefine itself.