hp workstations zx6000, hp server rx2600 - operation and maintenance guide

System Configuration
Extensible Firmware Interface (EFI)
Chapter 3
110
To display the current echo setting, execute this command at the shell prompt:
fs0:\> echo
result:
Echo is off
To turn command echoing on, execute this command at the shell prompt:
fs0:\> echo -on
goto Command The goto command makes a batch file execution jump to another
location.
Syntax
goto label
label Specifies a location in a batch file.
Notes:
This command is only available in batch script files.
This command causes execution of the code to occur at the next line after the label.
This command will not allow you to jump into a FOR loop from outside the loop.
Examples:
To skip the code between the goto statements and its label within a shell script, you
would execute a command similar to this:
goto Done
<statements>...
:Done
pause Command The pause command prints a message and suspendsscript execution
for keyboard input.
Syntax
pause
Notes:
The pause command is only available in batch script files.
The message displayed when pause is executed is:
Enter ‘q’ to quit, any other key to continue.“