Browse Source

Fixed read to prevent mangling backslashes

master
Ben Ashton 2 years ago
parent
commit
b8803ef332
  1. 2
      README.md

2
README.md

@ -19,7 +19,7 @@ $ title='My Restaurant Randomizer';
<p>From the following restaurants:</p>
<ul>
# Loop through restaurants and display each one
$ while read restaurant; do
$ while read -r restaurant; do
<li><% $restaurant %></li>
$ done <restaurants.txt
</ul>

Loading…
Cancel
Save