How i can follow reply from command to make new commands work?
Im trying and testing some script that will install proper version of daemon, but first in the code i want check if its running for real and check the version of the daemon(Then will force download and update it). But im stucked at the beginning.
#!/bin/bash
RED='33[0;91m'
GREEN='33[1;32m'
YELLOW='33[1;33m'
NC='33[0m'`
#Checking Server status
/usr/local/bin/evos-cli getinfo
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
then
echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"
evosd
sleep 10s
else
echo -e "${GREEN} Server is running i check for the version soon! ${NC}"
sleep 2s
fi
#Version Checking
/usr/local/bin/evos-cli --version
if [[ "/usr/local/bin/evos-cli --version" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
There are many commands available on daemon, if server is stopped and you type any command you will receive "error: couldn't connect to server" Thats why i want to trigger else
option if "error: couldn't connect to server" not happen . Even the server is stopped its triggering else
command which skip the starting server process and say Server is running. The version checker is also triggering else
option even the version match with the command provided. The version was triggering to correct version when i used this code (But code is useless because anything there will say correct)
/usr/local/bin/evos-cli --version
if [ "/usr/local/bin/evos-cli --version Evos Core RPC client version v1.1.3.0-2ba4298" ];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
evos-cli getinfo
, or /usr/local/bin/evos-cli getinfo
example of how command can be triggered in the terminal.
Tried many variants but i cannot figure out.
shell-script ubuntu
New contributor
add a comment |
Im trying and testing some script that will install proper version of daemon, but first in the code i want check if its running for real and check the version of the daemon(Then will force download and update it). But im stucked at the beginning.
#!/bin/bash
RED='33[0;91m'
GREEN='33[1;32m'
YELLOW='33[1;33m'
NC='33[0m'`
#Checking Server status
/usr/local/bin/evos-cli getinfo
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
then
echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"
evosd
sleep 10s
else
echo -e "${GREEN} Server is running i check for the version soon! ${NC}"
sleep 2s
fi
#Version Checking
/usr/local/bin/evos-cli --version
if [[ "/usr/local/bin/evos-cli --version" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
There are many commands available on daemon, if server is stopped and you type any command you will receive "error: couldn't connect to server" Thats why i want to trigger else
option if "error: couldn't connect to server" not happen . Even the server is stopped its triggering else
command which skip the starting server process and say Server is running. The version checker is also triggering else
option even the version match with the command provided. The version was triggering to correct version when i used this code (But code is useless because anything there will say correct)
/usr/local/bin/evos-cli --version
if [ "/usr/local/bin/evos-cli --version Evos Core RPC client version v1.1.3.0-2ba4298" ];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
evos-cli getinfo
, or /usr/local/bin/evos-cli getinfo
example of how command can be triggered in the terminal.
Tried many variants but i cannot figure out.
shell-script ubuntu
New contributor
Please don't post images of text.
– Tomasz
3 hours ago
add a comment |
Im trying and testing some script that will install proper version of daemon, but first in the code i want check if its running for real and check the version of the daemon(Then will force download and update it). But im stucked at the beginning.
#!/bin/bash
RED='33[0;91m'
GREEN='33[1;32m'
YELLOW='33[1;33m'
NC='33[0m'`
#Checking Server status
/usr/local/bin/evos-cli getinfo
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
then
echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"
evosd
sleep 10s
else
echo -e "${GREEN} Server is running i check for the version soon! ${NC}"
sleep 2s
fi
#Version Checking
/usr/local/bin/evos-cli --version
if [[ "/usr/local/bin/evos-cli --version" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
There are many commands available on daemon, if server is stopped and you type any command you will receive "error: couldn't connect to server" Thats why i want to trigger else
option if "error: couldn't connect to server" not happen . Even the server is stopped its triggering else
command which skip the starting server process and say Server is running. The version checker is also triggering else
option even the version match with the command provided. The version was triggering to correct version when i used this code (But code is useless because anything there will say correct)
/usr/local/bin/evos-cli --version
if [ "/usr/local/bin/evos-cli --version Evos Core RPC client version v1.1.3.0-2ba4298" ];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
evos-cli getinfo
, or /usr/local/bin/evos-cli getinfo
example of how command can be triggered in the terminal.
Tried many variants but i cannot figure out.
shell-script ubuntu
New contributor
Im trying and testing some script that will install proper version of daemon, but first in the code i want check if its running for real and check the version of the daemon(Then will force download and update it). But im stucked at the beginning.
#!/bin/bash
RED='33[0;91m'
GREEN='33[1;32m'
YELLOW='33[1;33m'
NC='33[0m'`
#Checking Server status
/usr/local/bin/evos-cli getinfo
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
then
echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"
evosd
sleep 10s
else
echo -e "${GREEN} Server is running i check for the version soon! ${NC}"
sleep 2s
fi
#Version Checking
/usr/local/bin/evos-cli --version
if [[ "/usr/local/bin/evos-cli --version" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
There are many commands available on daemon, if server is stopped and you type any command you will receive "error: couldn't connect to server" Thats why i want to trigger else
option if "error: couldn't connect to server" not happen . Even the server is stopped its triggering else
command which skip the starting server process and say Server is running. The version checker is also triggering else
option even the version match with the command provided. The version was triggering to correct version when i used this code (But code is useless because anything there will say correct)
/usr/local/bin/evos-cli --version
if [ "/usr/local/bin/evos-cli --version Evos Core RPC client version v1.1.3.0-2ba4298" ];
then
echo -e "${GREEN} Version of wallet is correct! ${NC}"
else
echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}"
fi
#Checked Status
sleep 3s
echo -e "${YELLOW} Status Checked! ${NC}"
evos-cli getinfo
, or /usr/local/bin/evos-cli getinfo
example of how command can be triggered in the terminal.
Tried many variants but i cannot figure out.
shell-script ubuntu
shell-script ubuntu
New contributor
New contributor
edited 3 hours ago
RasmonT
New contributor
asked 3 hours ago
RasmonTRasmonT
84
84
New contributor
New contributor
Please don't post images of text.
– Tomasz
3 hours ago
add a comment |
Please don't post images of text.
– Tomasz
3 hours ago
Please don't post images of text.
– Tomasz
3 hours ago
Please don't post images of text.
– Tomasz
3 hours ago
add a comment |
1 Answer
1
active
oldest
votes
In the test
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
you seem to want to compare the output of /usr/local/bin/evos-cli getinfo
to a string. What you probably want to do in this particular test is to test whether the command was successful or not.
This would be done with
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
# this worked
else
# the command failed
fi
To compare the output of a command, use a command substitution:
if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then
# version was the expected string
else
# we got an unknown version
fi
or, if you just want to match the first part of that string, using bash
,
if [[ "$(/usr/local/bin/evos-cli --version)" == "Evos Core RPC client version v1.1.3.0"* ]]; then
# version was the expected string
else
# we got an unknown version
fi
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.
– RasmonT
2 hours ago
But this did not worked/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd`sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried
– RasmonT
2 hours ago
@RasmonT Why do you call/usr/local/bin/evos-cli getinfo
before theif
statement? Theif
statement calls it.
– Kusalananda
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
|
show 3 more comments
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
});
}
});
RasmonT 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%2f503003%2fhow-i-can-follow-reply-from-command-to-make-new-commands-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In the test
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
you seem to want to compare the output of /usr/local/bin/evos-cli getinfo
to a string. What you probably want to do in this particular test is to test whether the command was successful or not.
This would be done with
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
# this worked
else
# the command failed
fi
To compare the output of a command, use a command substitution:
if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then
# version was the expected string
else
# we got an unknown version
fi
or, if you just want to match the first part of that string, using bash
,
if [[ "$(/usr/local/bin/evos-cli --version)" == "Evos Core RPC client version v1.1.3.0"* ]]; then
# version was the expected string
else
# we got an unknown version
fi
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.
– RasmonT
2 hours ago
But this did not worked/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd`sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried
– RasmonT
2 hours ago
@RasmonT Why do you call/usr/local/bin/evos-cli getinfo
before theif
statement? Theif
statement calls it.
– Kusalananda
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
|
show 3 more comments
In the test
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
you seem to want to compare the output of /usr/local/bin/evos-cli getinfo
to a string. What you probably want to do in this particular test is to test whether the command was successful or not.
This would be done with
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
# this worked
else
# the command failed
fi
To compare the output of a command, use a command substitution:
if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then
# version was the expected string
else
# we got an unknown version
fi
or, if you just want to match the first part of that string, using bash
,
if [[ "$(/usr/local/bin/evos-cli --version)" == "Evos Core RPC client version v1.1.3.0"* ]]; then
# version was the expected string
else
# we got an unknown version
fi
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.
– RasmonT
2 hours ago
But this did not worked/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd`sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried
– RasmonT
2 hours ago
@RasmonT Why do you call/usr/local/bin/evos-cli getinfo
before theif
statement? Theif
statement calls it.
– Kusalananda
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
|
show 3 more comments
In the test
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
you seem to want to compare the output of /usr/local/bin/evos-cli getinfo
to a string. What you probably want to do in this particular test is to test whether the command was successful or not.
This would be done with
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
# this worked
else
# the command failed
fi
To compare the output of a command, use a command substitution:
if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then
# version was the expected string
else
# we got an unknown version
fi
or, if you just want to match the first part of that string, using bash
,
if [[ "$(/usr/local/bin/evos-cli --version)" == "Evos Core RPC client version v1.1.3.0"* ]]; then
# version was the expected string
else
# we got an unknown version
fi
In the test
if [[ "/usr/local/bin/evos-cli getinfo" = "error: couldn't connect to server" ]];
you seem to want to compare the output of /usr/local/bin/evos-cli getinfo
to a string. What you probably want to do in this particular test is to test whether the command was successful or not.
This would be done with
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
# this worked
else
# the command failed
fi
To compare the output of a command, use a command substitution:
if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then
# version was the expected string
else
# we got an unknown version
fi
or, if you just want to match the first part of that string, using bash
,
if [[ "$(/usr/local/bin/evos-cli --version)" == "Evos Core RPC client version v1.1.3.0"* ]]; then
# version was the expected string
else
# we got an unknown version
fi
answered 3 hours ago
KusalanandaKusalananda
132k17252416
132k17252416
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.
– RasmonT
2 hours ago
But this did not worked/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd`sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried
– RasmonT
2 hours ago
@RasmonT Why do you call/usr/local/bin/evos-cli getinfo
before theif
statement? Theif
statement calls it.
– Kusalananda
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
|
show 3 more comments
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.
– RasmonT
2 hours ago
But this did not worked/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd`sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried
– RasmonT
2 hours ago
@RasmonT Why do you call/usr/local/bin/evos-cli getinfo
before theif
statement? Theif
statement calls it.
– Kusalananda
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.– RasmonT
2 hours ago
#Version Checking /usr/local/bin/evos-cli --version if [ "$(/usr/local/bin/evos-cli --version)" = "Evos Core RPC client version v1.1.3.0-2ba4298" ]; then echo -e "${GREEN} Version of wallet is correct! ${NC}" else echo -e "${YELLOW} Version of wallet is Incorrect! ${NC}" fi
This works perfectly! When i put another number it says incorrect now.– RasmonT
2 hours ago
But this did not worked
/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd` sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried– RasmonT
2 hours ago
But this did not worked
/usr/local/bin/evos-cli getinfo
if /usr/local/bin/evos-cli getinfo >/dev/null 2>&1; then
` echo -e "${GREEN}I will start Evos server then i check for version... ${NC}"` ` evosd` sleep 10s
else echo -e "${GREEN} Server is running i check for the version soon! ${NC}" sleep 2s fi` Its forcing the start even daemon is online.. I tried– RasmonT
2 hours ago
@RasmonT Why do you call
/usr/local/bin/evos-cli getinfo
before the if
statement? The if
statement calls it.– Kusalananda
2 hours ago
@RasmonT Why do you call
/usr/local/bin/evos-cli getinfo
before the if
statement? The if
statement calls it.– Kusalananda
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@Kusalanada I try it right now... and im not able to paste code here in the comments normally do not know how to do it ..
– RasmonT
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
@RasmonT Comments have very limited formatting.
– Kusalananda
2 hours ago
|
show 3 more comments
RasmonT is a new contributor. Be nice, and check out our Code of Conduct.
RasmonT is a new contributor. Be nice, and check out our Code of Conduct.
RasmonT is a new contributor. Be nice, and check out our Code of Conduct.
RasmonT 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%2f503003%2fhow-i-can-follow-reply-from-command-to-make-new-commands-work%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
Please don't post images of text.
– Tomasz
3 hours ago