Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 276 Bytes

echo.md

File metadata and controls

10 lines (7 loc) · 276 Bytes

ECHO

Prints out the arguments to standard output.

Echo is often used to pass on parameters to other commands' inputs, since it writes out to standard output, its output can be piped to another command's input stream.

# Prints "Hello" to the screen
echo "Hello"