Using regular expressions in “less” Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionUsing regular expressions with cpVIM see regular expressions matches as you typeMatch multiple regular expressions from a single file using awkCan I force `man` to do lower case sensitive matching?Regular expressions in a shellUltraEdit - regular expressions replacementHow do I search bash's history in vi mode for “foo.*bar”Extended Regular Expressions (EREs): How do I include pattern but exclude specific superset of pattern in matches?How does storing the regular expression in a shell variable avoid problems with quoting characters that are special to the shell?How to indicate start of line in less search of man pages?
Is there a service that would inform me whenever a new direct route is scheduled from a given airport?
Disable hyphenation for an entire paragraph
Do I really need recursive chmod to restrict access to a folder?
Stars Make Stars
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
Right-skewed distribution with mean equals to mode?
I am not a queen, who am I?
Letter Boxed validator
Why did the IBM 650 use bi-quinary?
When -s is used with third person singular. What's its use in this context?
Java 8 stream max() function argument type Comparator vs Comparable
IndentationError when pasting code in Python 3 interpreter mode
Why does Python start at index 1 when iterating an array backwards?
How can I make names more distinctive without making them longer?
Is there a concise way to say "all of the X, one of each"?
What causes the vertical darker bands in my photo?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
Why is "Consequences inflicted." not a sentence?
How widely used is the term Treppenwitz? Is it something that most Germans know?
Marking the functions of a sentence: 'She may like it'
What would be Julian Assange's expected punishment, on the current English criminal law?
Is there a way in Ruby to make just any one out of many keyword arguments required?
List *all* the tuples!
WAN encapsulation
Using regular expressions in “less”
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionUsing regular expressions with cpVIM see regular expressions matches as you typeMatch multiple regular expressions from a single file using awkCan I force `man` to do lower case sensitive matching?Regular expressions in a shellUltraEdit - regular expressions replacementHow do I search bash's history in vi mode for “foo.*bar”Extended Regular Expressions (EREs): How do I include pattern but exclude specific superset of pattern in matches?How does storing the regular expression in a shell variable avoid problems with quoting characters that are special to the shell?How to indicate start of line in less search of man pages?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to use a regular expression in the man page of Bash by using less.
I press / in less to enter a pattern, and I type z and press the Enter. I expected it to not match upper-case z (Z), but it does.
How do I make it not match Z? What kind of regular expressions are these that are not case sensitive?
regular-expression less case-sensitivity
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm trying to use a regular expression in the man page of Bash by using less.
I press / in less to enter a pattern, and I type z and press the Enter. I expected it to not match upper-case z (Z), but it does.
How do I make it not match Z? What kind of regular expressions are these that are not case sensitive?
regular-expression less case-sensitivity
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm trying to use a regular expression in the man page of Bash by using less.
I press / in less to enter a pattern, and I type z and press the Enter. I expected it to not match upper-case z (Z), but it does.
How do I make it not match Z? What kind of regular expressions are these that are not case sensitive?
regular-expression less case-sensitivity
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm trying to use a regular expression in the man page of Bash by using less.
I press / in less to enter a pattern, and I type z and press the Enter. I expected it to not match upper-case z (Z), but it does.
How do I make it not match Z? What kind of regular expressions are these that are not case sensitive?
regular-expression less case-sensitivity
regular-expression less case-sensitivity
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 11 at 16:39
Kusalananda♦
142k18264440
142k18264440
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Apr 10 at 18:42
regexregex
223
223
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
regex is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
It's explained in the man page for less.
The default action for REs is to ignore case if there are no uppercase characters present, but to act case-sensitively otherwise.
There are three modes available within less:
- Case context dependent: a search or RE without uppercase characters is considered to be case-insensitive, but a search or RE containing at least one uppercase character is considered to be case-sensitive. Examples:
abcwill matchabcandaBC, butaBcwill only matchaBcand notabcorABC. This is the default setting. - Case sensitive: a search or RE pays full regard to the case of any letter. Example:
abCwill match onlyabCand notabcorABC. - Case insensitive: a search or RE pays no regard to the case of any letter. Example:
abCwill match any ofabc,abC, orABC.
You can toggle case sensitive comparisons with -I, and case context sensitive comparisons with -i.
The control can be specified in three ways:
- On the command line, for example
less -I bigfile.txt. - In the environment, for example
export LESS=-iand laterless bigfile.txt. - Within
lessitself, for example by startingless bigfile.txtand then typing-i.
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as-I, not as-i.
– regex
Apr 10 at 23:14
1
You could also append|$A(which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.
– Stéphane Chazelas
Apr 11 at 16:35
@StéphaneChazelas that's thrown me. I had thought$was only special at the end of an RE (or RE clause), so$Awould match a dollar and a capital letter, butA$would match a capital at the end of a line. (Update: I can't even mimic this withperl, but definitely works withless.)
– roaima
Apr 11 at 16:50
@roaima, it's different between BRE and ERE, POSIX requires BRE$ato match on$a, and ERE$ato not match ($to match the end of the subject wherever it's found). In Perl/PCRE,$matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if themflag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.
– Stéphane Chazelas
Apr 11 at 17:26
add a comment |
Pretty sure you can get around that by using -i or +i in order to set less to default.
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thank you, 6b6b.
– regex
Apr 10 at 18:59
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
regex is a new contributor. Be nice, and check out our Code of Conduct.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f511736%2fusing-regular-expressions-in-less%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
It's explained in the man page for less.
The default action for REs is to ignore case if there are no uppercase characters present, but to act case-sensitively otherwise.
There are three modes available within less:
- Case context dependent: a search or RE without uppercase characters is considered to be case-insensitive, but a search or RE containing at least one uppercase character is considered to be case-sensitive. Examples:
abcwill matchabcandaBC, butaBcwill only matchaBcand notabcorABC. This is the default setting. - Case sensitive: a search or RE pays full regard to the case of any letter. Example:
abCwill match onlyabCand notabcorABC. - Case insensitive: a search or RE pays no regard to the case of any letter. Example:
abCwill match any ofabc,abC, orABC.
You can toggle case sensitive comparisons with -I, and case context sensitive comparisons with -i.
The control can be specified in three ways:
- On the command line, for example
less -I bigfile.txt. - In the environment, for example
export LESS=-iand laterless bigfile.txt. - Within
lessitself, for example by startingless bigfile.txtand then typing-i.
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as-I, not as-i.
– regex
Apr 10 at 23:14
1
You could also append|$A(which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.
– Stéphane Chazelas
Apr 11 at 16:35
@StéphaneChazelas that's thrown me. I had thought$was only special at the end of an RE (or RE clause), so$Awould match a dollar and a capital letter, butA$would match a capital at the end of a line. (Update: I can't even mimic this withperl, but definitely works withless.)
– roaima
Apr 11 at 16:50
@roaima, it's different between BRE and ERE, POSIX requires BRE$ato match on$a, and ERE$ato not match ($to match the end of the subject wherever it's found). In Perl/PCRE,$matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if themflag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.
– Stéphane Chazelas
Apr 11 at 17:26
add a comment |
It's explained in the man page for less.
The default action for REs is to ignore case if there are no uppercase characters present, but to act case-sensitively otherwise.
There are three modes available within less:
- Case context dependent: a search or RE without uppercase characters is considered to be case-insensitive, but a search or RE containing at least one uppercase character is considered to be case-sensitive. Examples:
abcwill matchabcandaBC, butaBcwill only matchaBcand notabcorABC. This is the default setting. - Case sensitive: a search or RE pays full regard to the case of any letter. Example:
abCwill match onlyabCand notabcorABC. - Case insensitive: a search or RE pays no regard to the case of any letter. Example:
abCwill match any ofabc,abC, orABC.
You can toggle case sensitive comparisons with -I, and case context sensitive comparisons with -i.
The control can be specified in three ways:
- On the command line, for example
less -I bigfile.txt. - In the environment, for example
export LESS=-iand laterless bigfile.txt. - Within
lessitself, for example by startingless bigfile.txtand then typing-i.
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as-I, not as-i.
– regex
Apr 10 at 23:14
1
You could also append|$A(which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.
– Stéphane Chazelas
Apr 11 at 16:35
@StéphaneChazelas that's thrown me. I had thought$was only special at the end of an RE (or RE clause), so$Awould match a dollar and a capital letter, butA$would match a capital at the end of a line. (Update: I can't even mimic this withperl, but definitely works withless.)
– roaima
Apr 11 at 16:50
@roaima, it's different between BRE and ERE, POSIX requires BRE$ato match on$a, and ERE$ato not match ($to match the end of the subject wherever it's found). In Perl/PCRE,$matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if themflag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.
– Stéphane Chazelas
Apr 11 at 17:26
add a comment |
It's explained in the man page for less.
The default action for REs is to ignore case if there are no uppercase characters present, but to act case-sensitively otherwise.
There are three modes available within less:
- Case context dependent: a search or RE without uppercase characters is considered to be case-insensitive, but a search or RE containing at least one uppercase character is considered to be case-sensitive. Examples:
abcwill matchabcandaBC, butaBcwill only matchaBcand notabcorABC. This is the default setting. - Case sensitive: a search or RE pays full regard to the case of any letter. Example:
abCwill match onlyabCand notabcorABC. - Case insensitive: a search or RE pays no regard to the case of any letter. Example:
abCwill match any ofabc,abC, orABC.
You can toggle case sensitive comparisons with -I, and case context sensitive comparisons with -i.
The control can be specified in three ways:
- On the command line, for example
less -I bigfile.txt. - In the environment, for example
export LESS=-iand laterless bigfile.txt. - Within
lessitself, for example by startingless bigfile.txtand then typing-i.
It's explained in the man page for less.
The default action for REs is to ignore case if there are no uppercase characters present, but to act case-sensitively otherwise.
There are three modes available within less:
- Case context dependent: a search or RE without uppercase characters is considered to be case-insensitive, but a search or RE containing at least one uppercase character is considered to be case-sensitive. Examples:
abcwill matchabcandaBC, butaBcwill only matchaBcand notabcorABC. This is the default setting. - Case sensitive: a search or RE pays full regard to the case of any letter. Example:
abCwill match onlyabCand notabcorABC. - Case insensitive: a search or RE pays no regard to the case of any letter. Example:
abCwill match any ofabc,abC, orABC.
You can toggle case sensitive comparisons with -I, and case context sensitive comparisons with -i.
The control can be specified in three ways:
- On the command line, for example
less -I bigfile.txt. - In the environment, for example
export LESS=-iand laterless bigfile.txt. - Within
lessitself, for example by startingless bigfile.txtand then typing-i.
edited Apr 11 at 16:21
answered Apr 10 at 18:53
roaimaroaima
46.2k758124
46.2k758124
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as-I, not as-i.
– regex
Apr 10 at 23:14
1
You could also append|$A(which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.
– Stéphane Chazelas
Apr 11 at 16:35
@StéphaneChazelas that's thrown me. I had thought$was only special at the end of an RE (or RE clause), so$Awould match a dollar and a capital letter, butA$would match a capital at the end of a line. (Update: I can't even mimic this withperl, but definitely works withless.)
– roaima
Apr 11 at 16:50
@roaima, it's different between BRE and ERE, POSIX requires BRE$ato match on$a, and ERE$ato not match ($to match the end of the subject wherever it's found). In Perl/PCRE,$matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if themflag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.
– Stéphane Chazelas
Apr 11 at 17:26
add a comment |
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as-I, not as-i.
– regex
Apr 10 at 23:14
1
You could also append|$A(which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.
– Stéphane Chazelas
Apr 11 at 16:35
@StéphaneChazelas that's thrown me. I had thought$was only special at the end of an RE (or RE clause), so$Awould match a dollar and a capital letter, butA$would match a capital at the end of a line. (Update: I can't even mimic this withperl, but definitely works withless.)
– roaima
Apr 11 at 16:50
@roaima, it's different between BRE and ERE, POSIX requires BRE$ato match on$a, and ERE$ato not match ($to match the end of the subject wherever it's found). In Perl/PCRE,$matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if themflag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.
– Stéphane Chazelas
Apr 11 at 17:26
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as
-I, not as -i.– regex
Apr 10 at 23:14
Hey, roaima. I think this is incorrect. ``` -i or --ignore-case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE-CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. ``` From my experiments, it behaves as
-I, not as -i.– regex
Apr 10 at 23:14
1
1
You could also append
|$A (which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.– Stéphane Chazelas
Apr 11 at 16:35
You could also append
|$A (which translates as or A after the end of the line) for your pattern to become case sensitive without having to the change the settings.– Stéphane Chazelas
Apr 11 at 16:35
@StéphaneChazelas that's thrown me. I had thought
$ was only special at the end of an RE (or RE clause), so $A would match a dollar and a capital letter, but A$ would match a capital at the end of a line. (Update: I can't even mimic this with perl, but definitely works with less.)– roaima
Apr 11 at 16:50
@StéphaneChazelas that's thrown me. I had thought
$ was only special at the end of an RE (or RE clause), so $A would match a dollar and a capital letter, but A$ would match a capital at the end of a line. (Update: I can't even mimic this with perl, but definitely works with less.)– roaima
Apr 11 at 16:50
@roaima, it's different between BRE and ERE, POSIX requires BRE
$a to match on $a, and ERE $a to not match ($ to match the end of the subject wherever it's found). In Perl/PCRE, $ matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if the m flag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.– Stéphane Chazelas
Apr 11 at 17:26
@roaima, it's different between BRE and ERE, POSIX requires BRE
$a to match on $a, and ERE $a to not match ($ to match the end of the subject wherever it's found). In Perl/PCRE, $ matches at the end of the subject or before a trailing line delimiter at the end of the subject, or if the m flag is enabled ((?m)) at the end of the subject or before any line delimiter in the subject.– Stéphane Chazelas
Apr 11 at 17:26
add a comment |
Pretty sure you can get around that by using -i or +i in order to set less to default.
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thank you, 6b6b.
– regex
Apr 10 at 18:59
add a comment |
Pretty sure you can get around that by using -i or +i in order to set less to default.
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thank you, 6b6b.
– regex
Apr 10 at 18:59
add a comment |
Pretty sure you can get around that by using -i or +i in order to set less to default.
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Pretty sure you can get around that by using -i or +i in order to set less to default.
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 10 at 19:44
Jeff Schaller♦
45k1164147
45k1164147
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered Apr 10 at 18:49
6d6d6d6d
212
212
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
6d6d is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Thank you, 6b6b.
– regex
Apr 10 at 18:59
add a comment |
Thank you, 6b6b.
– regex
Apr 10 at 18:59
Thank you, 6b6b.
– regex
Apr 10 at 18:59
Thank you, 6b6b.
– regex
Apr 10 at 18:59
add a comment |
regex is a new contributor. Be nice, and check out our Code of Conduct.
regex is a new contributor. Be nice, and check out our Code of Conduct.
regex is a new contributor. Be nice, and check out our Code of Conduct.
regex is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f511736%2fusing-regular-expressions-in-less%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown