Is the tick or acute accent character (´) used for anything in Linux shell?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
We know that the backtick character is used for command substitution:
chown `id -u` /mydir
Which made me wonder: is the tick character ´
used for anything in the Linux shell?
Note: incidentally, command substitution can also be written more readably aschown $(id -u) /mydir
special-characters
add a comment |Â
up vote
1
down vote
favorite
We know that the backtick character is used for command substitution:
chown `id -u` /mydir
Which made me wonder: is the tick character ´
used for anything in the Linux shell?
Note: incidentally, command substitution can also be written more readably aschown $(id -u) /mydir
special-characters
I was unsure of the name, but I thought´
is called acute accent only when used as a diacritic (and, conversely,`
is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note.
– dr01
1 hour ago
1
fair enough. I've removed the comment.
– Stéphane Chazelas
1 hour ago
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
We know that the backtick character is used for command substitution:
chown `id -u` /mydir
Which made me wonder: is the tick character ´
used for anything in the Linux shell?
Note: incidentally, command substitution can also be written more readably aschown $(id -u) /mydir
special-characters
We know that the backtick character is used for command substitution:
chown `id -u` /mydir
Which made me wonder: is the tick character ´
used for anything in the Linux shell?
Note: incidentally, command substitution can also be written more readably aschown $(id -u) /mydir
special-characters
special-characters
edited 1 hour ago
asked 2 hours ago


dr01
15.6k114869
15.6k114869
I was unsure of the name, but I thought´
is called acute accent only when used as a diacritic (and, conversely,`
is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note.
– dr01
1 hour ago
1
fair enough. I've removed the comment.
– Stéphane Chazelas
1 hour ago
add a comment |Â
I was unsure of the name, but I thought´
is called acute accent only when used as a diacritic (and, conversely,`
is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note.
– dr01
1 hour ago
1
fair enough. I've removed the comment.
– Stéphane Chazelas
1 hour ago
I was unsure of the name, but I thought
´
is called acute accent only when used as a diacritic (and, conversely, `
is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note.– dr01
1 hour ago
I was unsure of the name, but I thought
´
is called acute accent only when used as a diacritic (and, conversely, `
is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note.– dr01
1 hour ago
1
1
fair enough. I've removed the comment.
– Stéphane Chazelas
1 hour ago
fair enough. I've removed the comment.
– Stéphane Chazelas
1 hour ago
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
The character sets used historically with Unix, including ASCII, don’t have a tick character, so it wasn’t used. As far as I’m aware no common usage for that character has been introduced since it’s become available; nor would it, since it’s not included in POSIX’s portable character set.
` was apparently originally included in ASCII (along with ^ and ~) to serve as a diacritic. When ASCII was defined, the apostrophe was typically represented by a ′-style glyph (“primeâ€Â, as used for minutes or feet) rather than a straight apostrophe ', and was used as a diacritic acute accent too.
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
1
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.
– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)
– Stéphane Chazelas
2 hours ago
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
The character sets used historically with Unix, including ASCII, don’t have a tick character, so it wasn’t used. As far as I’m aware no common usage for that character has been introduced since it’s become available; nor would it, since it’s not included in POSIX’s portable character set.
` was apparently originally included in ASCII (along with ^ and ~) to serve as a diacritic. When ASCII was defined, the apostrophe was typically represented by a ′-style glyph (“primeâ€Â, as used for minutes or feet) rather than a straight apostrophe ', and was used as a diacritic acute accent too.
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
1
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.
– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)
– Stéphane Chazelas
2 hours ago
add a comment |Â
up vote
4
down vote
accepted
The character sets used historically with Unix, including ASCII, don’t have a tick character, so it wasn’t used. As far as I’m aware no common usage for that character has been introduced since it’s become available; nor would it, since it’s not included in POSIX’s portable character set.
` was apparently originally included in ASCII (along with ^ and ~) to serve as a diacritic. When ASCII was defined, the apostrophe was typically represented by a ′-style glyph (“primeâ€Â, as used for minutes or feet) rather than a straight apostrophe ', and was used as a diacritic acute accent too.
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
1
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.
– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)
– Stéphane Chazelas
2 hours ago
add a comment |Â
up vote
4
down vote
accepted
up vote
4
down vote
accepted
The character sets used historically with Unix, including ASCII, don’t have a tick character, so it wasn’t used. As far as I’m aware no common usage for that character has been introduced since it’s become available; nor would it, since it’s not included in POSIX’s portable character set.
` was apparently originally included in ASCII (along with ^ and ~) to serve as a diacritic. When ASCII was defined, the apostrophe was typically represented by a ′-style glyph (“primeâ€Â, as used for minutes or feet) rather than a straight apostrophe ', and was used as a diacritic acute accent too.
The character sets used historically with Unix, including ASCII, don’t have a tick character, so it wasn’t used. As far as I’m aware no common usage for that character has been introduced since it’s become available; nor would it, since it’s not included in POSIX’s portable character set.
` was apparently originally included in ASCII (along with ^ and ~) to serve as a diacritic. When ASCII was defined, the apostrophe was typically represented by a ′-style glyph (“primeâ€Â, as used for minutes or feet) rather than a straight apostrophe ', and was used as a diacritic acute accent too.
edited 1 hour ago
answered 2 hours ago
Stephen Kitt
154k23338407
154k23338407
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
1
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.
– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)
– Stéphane Chazelas
2 hours ago
add a comment |Â
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
1
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.
– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)
– Stéphane Chazelas
2 hours ago
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
"Presumably ´ wasn’t considered common enough to make the cut (despite its widespread use in non-American languages)." Touché.
– dr01
2 hours ago
1
1
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,
´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.– Stéphane Chazelas
2 hours ago
Characters outside the POSIX portable character set (a subset of ASCII) would not be used in the syntax of shells, as their encoding would typically vary between locales (and may not be found in some including the C locale). For instance, on a GNU system,
´
is 0xB4 in a fr_FR.iso88591 locale, 0xC2 0xB4 in a fr_FR.UTF-8 and doesn't exist in the C locale.– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)– Stéphane Chazelas
2 hours ago
'
in ASCII doubled as acute accent (in addition to apostrophe and singe quote)– Stéphane Chazelas
2 hours ago
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f479352%2fis-the-tick-or-acute-accent-character-%25c2%25b4-used-for-anything-in-linux-shell%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
I was unsure of the name, but I thought
´
is called acute accent only when used as a diacritic (and, conversely,`
is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note.– dr01
1 hour ago
1
fair enough. I've removed the comment.
– Stéphane Chazelas
1 hour ago