2014-05-11 11:20:51 +01:00
# echo
2016-01-07 17:31:27 +00:00
> Print given arguments.
2021-04-01 16:54:26 +01:00
> More information: <https://www.gnu.org/software/coreutils/echo>.
2014-05-11 11:20:51 +01:00
2016-01-07 17:31:27 +00:00
- Print a text message. Note: quotes are optional:
2014-05-11 11:20:51 +01:00
2020-10-04 18:33:38 +01:00
`echo "{{Hello World}}"`
2014-05-11 11:20:51 +01:00
2016-01-07 17:31:27 +00:00
- Print a message with environment variables:
2014-05-11 11:20:51 +01:00
2020-10-04 18:33:38 +01:00
`echo "{{My path is $PATH}}"`
2016-07-21 14:52:49 +01:00
- Print a message without the trailing newline:
2020-10-04 18:33:38 +01:00
`echo -n "{{Hello World}}"`
2016-07-21 14:52:49 +01:00
2019-06-22 16:40:44 +01:00
- Append a message to the file:
2020-10-04 18:33:38 +01:00
`echo "{{Hello World}}" >> {{file.txt}}`
2019-06-22 16:40:44 +01:00
2016-07-21 14:52:49 +01:00
- Enable interpretation of backslash escapes (special characters):
2020-10-04 18:33:38 +01:00
`echo -e "{{Column 1\tColumn 2}}"`
2023-07-25 18:17:16 +01:00
- Print the exit status of the last executed command (Note: In Windows Command Prompt and PowerShell the equivalent commands are `echo %errorlevel%` and `$lastexitcode` respectively):
`echo $?`