diff options
-rw-r--r-- | bash.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 0adc2efe..59aeaaf4 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -230,7 +230,9 @@ cat file.txt # We can also read the file using `cat`: Contents=$(cat file.txt) -echo "START OF FILE\n$Contents\nEND OF FILE" # "\n" prints a new line character +# "\n" prints a new line character +# "-e" to interpret the newline escape characters as escape characters +echo -e "START OF FILE\n$Contents\nEND OF FILE" # => START OF FILE # => [contents of file.txt] # => END OF FILE |