Print text to standard output.
- Repository:
opencomputers - System:
openos - Type:
command
OpenComputers/src\main\resources\assets\opencomputers\loot\openos\bin\echo.luaOpenComputers/src\main\resources\assets\opencomputers\loot\openos\usr\man\echoOpenSecurity/src\main\resources\assets\opensecurity\lua\SecureOS\usr\man\echo
echo [STRING...]Write the supplied strings to standard output. By default, echo appends a trailing newline; with -n, it leaves the final newline off.
STRING...: One or more text fragments to print in order.
-n: Do not print the trailing newline.--help: Print the built-in help text and exit.
echo testPrint test followed by a newline.
echo "a b"Print the text a b exactly as supplied.
echo -n prompt>Print prompt> without moving to the next line.