diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-08-02 08:46:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-02 08:46:25 +0200 |
commit | 59c7f495c82c27daa97e5d5f05b4420cd0d68046 (patch) | |
tree | 8b19297023b1de49c57e234103293c2c545d3058 | |
parent | df6b6e4f3d5619aac3804ee8fe4fd9bf1fecb5a8 (diff) | |
parent | 211ec4f50bbd902c219e639d31cb1afec17e4f84 (diff) |
Merge pull request #3987 from kevinnls/master
removed MacOS from intro
-rw-r--r-- | bash.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 59aeaaf4..7ca4285b 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -23,7 +23,7 @@ translators: --- Bash is a name of the unix shell, which was also distributed as the shell -for the GNU operating system and as default shell on Linux and Mac OS X. +for the GNU operating system and as the default shell on most Linux distros. Nearly all examples below can be a part of a shell script or executed directly in the shell. @@ -231,7 +231,7 @@ cat file.txt # We can also read the file using `cat`: Contents=$(cat file.txt) # "\n" prints a new line character -# "-e" to interpret the newline escape characters as escape characters +# "-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] |