Script Command: ECHO
ECHO {any string}
Echo the specified string to the console. If the string contains whitespace, then it must be enclosed within double quotes.
There are a few special formatting characters that are processed by ECHO...
Some examples...
Command:
ECHO Hi!
Output:
Hi! (with newline appended)
Command:
ECHO "Hi\n How are you?"
Output:
Command:
Output:
Hi there!