Skip to content

Files

Latest commit

 

History

History
33 lines (20 loc) · 857 Bytes

SC1111.md

File metadata and controls

33 lines (20 loc) · 857 Bytes

Pattern: Use of Unicode double quote

Issue: -

Description

Some software, like OS X, Word and WordPress, may automatically replace your regular quotes with slanted Unicode quotes. The shell does not recognize these quotes and will not respect them.

In this case, you have slanted double quotes in a double quoted string. Try deleting and retyping them, and/or disable “smart quotes” in your editor or OS.

Example of incorrect code:

echo "hello world”

Example of correct code:

echo "hello world"

Exceptions

If you want to use literal slanted double quotes for typographic reasons, you can put them in single quotes to make ShellCheck ignore them:

printf 'Warning: “wakeonlan” is not installed.\n'

Further Reading