❮ Shells
❯
- echo
- -n
echo
echo prints its parameters to the screen (standard output) follwed by a newline. -n supresses the additional newline. (Mostly interesting for scripts).
echo hello world echo "hello world" echo -n "hello world"