You can use the echo command without the -e option simply by typing echo followed by the text you want to display. In this case, any backslash escape sequences will be treated as literal characters and will not be interpreted.
For example:
echo "Hello\nWorld"
This command will output:
Hello\nWorld
As you can see, the \n is printed as part of the string rather than creating a new line.
If you want to print text normally without interpreting any escape sequences, just use echo like this:
echo "This is a simple message."
This will output:
This is a simple message.
In summary, using echo without -e is straightforward and is suitable for displaying plain text without any special formatting.
