Echoes text to the command pane, taking out quotes if there are any. For example, both of the following give the same result:
echo foo bar |
echo "foo bar" |
This command is preferable to print in cases where you don't want the text to be evaluated. (See also print.)