Usage: echo [OPTION]... [ARG]...
Print ARGs to stdout.
Options:
-n Suppress trailing newline -e Enable interpretation of escaped characters -E Disable interpretation of escaped characters |
Example:
$ echo "Erik is cool" Erik is cool $ echo -e "Erik\nis\ncool" Erik is cool $ echo "Erik\nis\ncool" Erik\nis\ncool |