I never noticed the character ` (the one in the same key as tilde ~). There is another single quote character ' in the same key as ". I see that the characters ` and ' aren't interchangeable whereas ' and " are.
I spent a lot of time due to that when compiling GTK programs. It gave error (file not found), and finally figured out that its not a single quote.
What is the purpose of this ` character and when is it (or when should it) be used?
Thanks.
|
|
|||
|
It's typically called a "backtick", and in bash, it is used for command substitution (although the |
|||||||
|
|
` is known variously known as a backtick, or grave accent (See http://en.wikipedia.org/wiki/Grave_accent). In UNIX shells, as well as some scripting languages (Ruby, Perl...), it introduces some input to be executed in a subshell. In C and C++, it has no special purpose but can be inserted as a character literal, or part of a string literal. One reason it's not used for something more interested in the extremely wide portability of the languages spans machines where the character can't be expected to be on the keyboards, and may not display very differently from the single-right-quote "'" on screen and printouts, making for extremely hard-to-see bugs. In some word-processing and similar application programs, typing a backtick will insert a single left quote character "‘". Commonly keyboard input software will allow a user to type say " |
||||
|
|
|
I call it a "grave", as in a grave accent |
|||
|
|
|
In MySQL, it's used to surround identifiers when they might otherwise be ambiguous (such as using a reserved word as a table or column name). There are going to be lots of different uses of that character in lots of different pieces of software, just as there are for the other keys on the keyboard. |
|||
|
|
|
In a few languages, including PHP, Perl, and i think Ruby, backticks execute shell commands. http://php.net/manual/en/language.operators.execution.php The SQL thing mentioned is another use, which unfortunately I am well aware of because of co-workers who decided 'Desc' was a good name for a field |
|||
|
|
something like this. The way that it is used is dependent on the context of the use. Different contexts (languages, sites, etc) treat it differently, depending on the syntax of the context. – Reese Moore Nov 15 '10 at 4:18"and'are interchangeable. In most, their meaning is very different. – R.. Nov 15 '10 at 4:43