"This command displays, creates, or deletes aliases in the UEFI Shell environment. An alias provides a new name for an existing UEFI Shell command or UEFI application. Once the alias is created, it can be used to run the command or launch the UEFI application.\r\n"
"There are some aliases that are predefined in the UEFI Shell environment. These aliases provide the MS-DOS and UNIX equivalent names for the file manipulation commands. See Built-In Aliases (section 3.6.4) for more details. \r\n"
"Aliases will be retained even after exiting the shell unless the -v option is specified. If -v is specified then the alias will not be valid after leaving the shell.\r\n"
"This command clears the standard output device with an optional background color attribute. If a color is not specified, then the background color does not change.\r\n"
".SH OPTIONS\r\n"
"color - New background color\r\n"
" 0 - Black\r\n"
" 1 - Blue\r\n"
" 2 - Green\r\n"
" 3 - Cyan\r\n"
" 4 - Red\r\n"
" 5 - Magenta\r\n"
" 6 - Yellow\r\n"
" 7 - Light gray\r\n"
".SH EXAMPLES\r\n"
"To clear standard output without changing the background color:\r\n"
" fs0:\> cls\r\n"
"To clear standard output and change the background color to cyan:\r\n"
" fs0:\> cls 3\r\n"
"To clear standard output and change the background to the default color:\r\n"
" fs0:\> cls 0\r\n"
".SH RETURNVALUES\r\n"
"SHELL_SUCCESS The action was completed as requested.\r\n"
"SHELL_INVALID_PARAMETER One of the passed-in parameters was incorrectly \r\n"
" formatted or its value was out of bounds.\r\n"
"SHELL_SECURITY_VIOLATION This function was not performed due to a security\r\n"
" violation\r\n"
"SHELL_NOT_FOUND The requested file was not found.\r\n"
#string STR_GET_HELP_ECHO #language en-US ""
".TH echo 0 "display text or control text output"\r\n"
"-on Enables display when reading commands from script files.\r\n"
"-off Disables display when reading commands from script files.\r\n"
".SH DESCRIPTION\r\n"
"The first form of this command controls whether script commands are displayed as they are read from the script file. If no argument is given, the current "on" or "off" status is displayed. The second form prints the given message to the display.\r\n"
".SH RETURNVALUES\r\n"
"SHELL_SUCCESS The action was completed as requested.\r\n"
"SHELL_SECURITY_VIOLATION This function was not performed due to a security \r\n"
" violation\r\n"
".SH EXAMPLES\r\n"
"To display a message string of 'Hello World':\r\n"
"Gets the MTC from BootServices and displays it.\r\n"
".SH SYNOPSIS\r\n"
"GetMtc\r\n"
".SH DESCRIPTION\r\n"
"This command displays the current monotonic counter value. The lower 32 bits increment every time this command is executed. Every time the system is reset, the upper 32 bits will be incremented, and the lower 32 bits will be reset to 0. The following example is typical output from help for this command.\r\n"
".SH RETURNVALUES\r\n"
"SHELL_SUCCESS The action was completed as requested.\r\n"
"SHELL_DEVICE_ERROR The underlying device was not working correctly.\r\n"
"SHELL_SECURITY_VIOLATION This function was not performed due to a security \r\n"
" violation.\r\n"
".SH EXAMPLES\r\n"
" fs0:\> getmtc\r\n"
" 100000000\r\n"
" fs0:\> getmtc\r\n"
" 100000001\r\n"
#string STR_GET_HELP_PAUSE #language en-US ""
".TH pause 0 "pauses scripts"\r\n"
".SH NAME\r\n"
"Pauses a script and waits for an operator to press a key.\r\n"
".SH SYNOPSIS\r\n"
"pause [-q]\r\n"
".SH OPTIONS\r\n"
"-q Do not display test output prompt.\r\n"
".SH DESCRIPTION\r\n"
"The pause command prints a message to the display, then suspends script file execution, and waits for keyboard input. Pressing any key resumes execution, except for q or Q. If either q or Q is pressed, script processing terminates; otherwise, execution continues with the next line after the pause command.\r\n"
"file The name or pattern of the file or directory. There can be multiple \r\n"
" files on the command-line.\r\n"
"-r Recurse into subdirectories\r\n"
".SH DESCRIPTION\r\n"
"This command updates to the current time and date the time and date on the file that is specified by the file parameter.\r\n"
"If multiple files are specified on the command line, it will continue processing. It will touch the files one by one and errors will be ignored.\r\n"
"Touch cannot change the time and date of read-only files and directories.\r\n"
".SH RETURNVALUES\r\n"
"SHELL_SUCCESS The action was completed as requested.\r\n"
"SHELL_NOT_FOUND The target file or set of files were not found.\r\n"
"SHELL_SECURITY_VIOLATION This function was not performed due to a security \r\n"
" violation\r\n"
"SHELL_WRITE_PROTECTED The media was write-protected or the file had a \r\n"
" read-only attribute associated with it.\r\n"
#string STR_GET_HELP_TYPE #language en-US ""
".TH type 0 "print a file to StdOut"\r\n"
".SH NAME\r\n"
"Sends the contents of a file to the standard output device.\r\n"
".SH SYNOPSIS\r\n"
"type [-a|-u] file [file...]\r\n"
".SH OPTIONS\r\n"
"file Name of the file to display.\r\n"
"-a Display the file as if it is encoded as 8-bit ASCII\r\n"
"-u Displays the file as if it were encoded as UCS-2 Unicode.\r\n"
".SH DESCRIPTION\r\n"
"This command sends the contents of a file to the standard output device. If no options are used, then the command attempts to automatically detect the file type. If it fails, then UCS-2 is presumed.\r\n"
"If the -a option is specified, the file is sent to the standard output device as a stream of ASCII characters.\r\n"
"If the -u option is specified, the file is sent to the standard output device as a stream of Unicode (UCS-2) characters.\r\n"
".SH RETURNVALUES\r\n"
"SHELL_SUCCESS The action was completed as requested.\r\n"
"SHELL_INVALID_PARAMETER One of the passed in parameters was incorrectly \r\n"
" formatted or its value was out of bounds.\r\n"
"SHELL_SECURITY_VIOLATION This function was not performed due to a security \r\n"
" violation.\r\n"
"SHELL_NOT_FOUND The target file or set of files were not found.\r\n"
"This command displays the version information for this EFI Firmware, or the version information for the UEFI Shell itself. The information is retrieved through the EFI System Table or the Shell image.\r\n"