forked from koalaman/shellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
SC1015
Vidar Holen edited this page Oct 4, 2015
·
3 revisions
echo “hello world”
echo "hello world"
Blog software and word processors frequently replaces ASCII quotes ""
with fancy Unicode quotes, “”
. To bash, Unicode quotes are considered regular literals and not quotes at all.
Simply delete them and retype them in your editor.
If you really want literal Unicode double quotes, you can put them in single quotes (or unicode single quotes in double quotes) to make shellcheck ignore them.