Function will process and run a command line. This will determine if the command line represents an internal shell command or dispatch an external application. @param[in] CmdLine The command line to parse. @retval EFI_SUCCESS The command was completed. @retval EFI_ABORTED The command's operation was aborted. **/
| 2792 | @retval EFI_ABORTED The command's operation was aborted. |
| 2793 | **/ |
| 2794 | EFI_STATUS |
| 2795 | RunCommand( |
| 2796 | IN CONST CHAR16 *CmdLine |
| 2797 | ) |
| 2798 | { |
| 2799 | return (RunShellCommand(CmdLine, NULL)); |
| 2800 | } |
| 2801 | |
| 2802 | |
| 2803 | STATIC CONST UINT16 InvalidChars[] = {L'*', L'?', L'<', L'>', L'\\', L'/', L'\"', 0x0001, 0x0002}; |
no test coverage detected