echo

The echo command is used to display a message on the screen. It is used for testing purposes.

Syntax

echo [text to echo...]
  • [text to echo...]
    : Specifies the text that will be displayed on the screen.

Example

echo Hello, world!
Hello, world!
`