Skip to content

Commit

Permalink
Per #41: correction to employees example in README, to make the print…
Browse files Browse the repository at this point in the history
…f string safe by quoting it like the example.sh version does.
  • Loading branch information
XLTechie committed May 12, 2020
1 parent 77d442f commit 3b55f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Inline Parsing
echo " The ``people.Engineering.length()`` Employees listed are:"

for employee in ``people.Engineering.items()``; do
printf " - %s\n" ${!employee}
printf " - %s\n" "${!employee}"
done

echo
Expand Down

0 comments on commit 3b55f21

Please sign in to comment.