How to display a value with zenity?What's wrong with this Zenity code?How can I input to a file directly from the terminalCan a Zenity list display a string `--option`?Bash script that runs a command with arguments and redirectsbash send output from command to variablectmconv, zenity and filenames with spacesUsing Zenity to maintain configuration fileBash template to use zenity (or yad) to insert / edit / delete records in a file or databaseUbuntu Service with tail not startingAutomating a bash script FFMPEG
Why does the Earth follow an elliptical trajectory rather than a parabolic one?
How did Thanos not realise this had happened at the end of Endgame?
Exception propagation: When should I catch exceptions?
Run script for 10 times until meets the condition, but break the loop if it meets the condition during iteration
Can I make ravioli dough with only all-purpose flour or do I NEED semolina flour?
What is the significance of 4200 BCE in context of farming replacing foraging in Europe?
Why do Thanos's punches not kill Captain America or at least cause some mortal injuries?
As programers say: Strive to be lazy
Is it a bad idea to replace pull-up resistors with hard pull-ups?
What stroke width Instagram is using for its icons and how to get same results?
How to compact two the parabol commands in the following example?
Why does getw return -1 when trying to read a character?
On studying Computer Science vs. Software Engineering to become a proficient coder
How to minimise the cost of guessing a number in a high/low guess game?
Why was Endgame Thanos so different than Infinity War Thanos?
Why is this int array not passed as an object vararg array?
How to Access data returned from Apex class in JS controller using Lightning web component
What is Plautus’s pun about frustum and frustrum?
How to slow yourself down (for playing nice with others)
Unable to execute two commands in Startup Applications
What to do if SUS scores contradict qualitative feedback?
A curve pass via points at TiKz
Extracting sublists that contain similar elements
How can this triangle figure be modeled/drawn with TikZ?
How to display a value with zenity?
What's wrong with this Zenity code?How can I input to a file directly from the terminalCan a Zenity list display a string `--option`?Bash script that runs a command with arguments and redirectsbash send output from command to variablectmconv, zenity and filenames with spacesUsing Zenity to maintain configuration fileBash template to use zenity (or yad) to insert / edit / delete records in a file or databaseUbuntu Service with tail not startingAutomating a bash script FFMPEG
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to calculate Euler's numb. but I'm having problems trying to display the result. This is what I have:
#Using a switch an case
"Euler's Number")
szAnswer=$(zenity --info --text "Enter a number")
result = "(1+1/$szAnswer)^$szAnswer" | bc -l
zenity --info --text "Euler's Numb: $result"
I'm able to input a number and all, but when it comes to giving me the output result it just stays blank. Any help is welcomed.
bash sh zenity
add a comment |
I'm trying to calculate Euler's numb. but I'm having problems trying to display the result. This is what I have:
#Using a switch an case
"Euler's Number")
szAnswer=$(zenity --info --text "Enter a number")
result = "(1+1/$szAnswer)^$szAnswer" | bc -l
zenity --info --text "Euler's Numb: $result"
I'm able to input a number and all, but when it comes to giving me the output result it just stays blank. Any help is welcomed.
bash sh zenity
add a comment |
I'm trying to calculate Euler's numb. but I'm having problems trying to display the result. This is what I have:
#Using a switch an case
"Euler's Number")
szAnswer=$(zenity --info --text "Enter a number")
result = "(1+1/$szAnswer)^$szAnswer" | bc -l
zenity --info --text "Euler's Numb: $result"
I'm able to input a number and all, but when it comes to giving me the output result it just stays blank. Any help is welcomed.
bash sh zenity
I'm trying to calculate Euler's numb. but I'm having problems trying to display the result. This is what I have:
#Using a switch an case
"Euler's Number")
szAnswer=$(zenity --info --text "Enter a number")
result = "(1+1/$szAnswer)^$szAnswer" | bc -l
zenity --info --text "Euler's Numb: $result"
I'm able to input a number and all, but when it comes to giving me the output result it just stays blank. Any help is welcomed.
bash sh zenity
bash sh zenity
asked May 2 at 0:29
escobarverasescobarveras
203
203
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l line. It reads:
- execute command
resultwith parameters=and"(1+1/$szAnswer)^$szAnswer" - connect the
stdoutstream of theresultcommand tobccommand'sstdinstream
Probably you're wondering why result is a command in this case. That's because variable assignments in shell scripting are made without spaces separating variable name and assigned value. You also want to send "(1+1/$szAnswer)^$szAnswer" to stdin of bc -l command,so you need something capable of writing to stdout
What should be done is
result=$( echo "(1+1/$szAnswer)^$szAnswer" | bc -l )`
Now you have result variable being assigned output of echo "(1+1/$szAnswer)^$szAnswer" | bc -l pipeline. The $(...) structure is called command substitution, and is generally used when command's output has to be reused in place of the command itself.
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
May 2 at 0:39
Yes, here-string would probably be even more preferable forkshandbash
– Sergiy Kolodyazhnyy
May 2 at 0:41
TBH I hadn't even noticed theshtag ...
– steeldriver
May 2 at 0:43
@steeldriver It's negligible since there's a high chance OP is usingbashand since they haven't shown the full script.
– Sergiy Kolodyazhnyy
May 2 at 0:46
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
|
show 1 more comment
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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
);
);
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%2faskubuntu.com%2fquestions%2f1139840%2fhow-to-display-a-value-with-zenity%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
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l line. It reads:
- execute command
resultwith parameters=and"(1+1/$szAnswer)^$szAnswer" - connect the
stdoutstream of theresultcommand tobccommand'sstdinstream
Probably you're wondering why result is a command in this case. That's because variable assignments in shell scripting are made without spaces separating variable name and assigned value. You also want to send "(1+1/$szAnswer)^$szAnswer" to stdin of bc -l command,so you need something capable of writing to stdout
What should be done is
result=$( echo "(1+1/$szAnswer)^$szAnswer" | bc -l )`
Now you have result variable being assigned output of echo "(1+1/$szAnswer)^$szAnswer" | bc -l pipeline. The $(...) structure is called command substitution, and is generally used when command's output has to be reused in place of the command itself.
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
May 2 at 0:39
Yes, here-string would probably be even more preferable forkshandbash
– Sergiy Kolodyazhnyy
May 2 at 0:41
TBH I hadn't even noticed theshtag ...
– steeldriver
May 2 at 0:43
@steeldriver It's negligible since there's a high chance OP is usingbashand since they haven't shown the full script.
– Sergiy Kolodyazhnyy
May 2 at 0:46
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
|
show 1 more comment
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l line. It reads:
- execute command
resultwith parameters=and"(1+1/$szAnswer)^$szAnswer" - connect the
stdoutstream of theresultcommand tobccommand'sstdinstream
Probably you're wondering why result is a command in this case. That's because variable assignments in shell scripting are made without spaces separating variable name and assigned value. You also want to send "(1+1/$szAnswer)^$szAnswer" to stdin of bc -l command,so you need something capable of writing to stdout
What should be done is
result=$( echo "(1+1/$szAnswer)^$szAnswer" | bc -l )`
Now you have result variable being assigned output of echo "(1+1/$szAnswer)^$szAnswer" | bc -l pipeline. The $(...) structure is called command substitution, and is generally used when command's output has to be reused in place of the command itself.
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
May 2 at 0:39
Yes, here-string would probably be even more preferable forkshandbash
– Sergiy Kolodyazhnyy
May 2 at 0:41
TBH I hadn't even noticed theshtag ...
– steeldriver
May 2 at 0:43
@steeldriver It's negligible since there's a high chance OP is usingbashand since they haven't shown the full script.
– Sergiy Kolodyazhnyy
May 2 at 0:46
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
|
show 1 more comment
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l line. It reads:
- execute command
resultwith parameters=and"(1+1/$szAnswer)^$szAnswer" - connect the
stdoutstream of theresultcommand tobccommand'sstdinstream
Probably you're wondering why result is a command in this case. That's because variable assignments in shell scripting are made without spaces separating variable name and assigned value. You also want to send "(1+1/$szAnswer)^$szAnswer" to stdin of bc -l command,so you need something capable of writing to stdout
What should be done is
result=$( echo "(1+1/$szAnswer)^$szAnswer" | bc -l )`
Now you have result variable being assigned output of echo "(1+1/$szAnswer)^$szAnswer" | bc -l pipeline. The $(...) structure is called command substitution, and is generally used when command's output has to be reused in place of the command itself.
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l line. It reads:
- execute command
resultwith parameters=and"(1+1/$szAnswer)^$szAnswer" - connect the
stdoutstream of theresultcommand tobccommand'sstdinstream
Probably you're wondering why result is a command in this case. That's because variable assignments in shell scripting are made without spaces separating variable name and assigned value. You also want to send "(1+1/$szAnswer)^$szAnswer" to stdin of bc -l command,so you need something capable of writing to stdout
What should be done is
result=$( echo "(1+1/$szAnswer)^$szAnswer" | bc -l )`
Now you have result variable being assigned output of echo "(1+1/$szAnswer)^$szAnswer" | bc -l pipeline. The $(...) structure is called command substitution, and is generally used when command's output has to be reused in place of the command itself.
edited May 2 at 0:42
answered May 2 at 0:37
Sergiy KolodyazhnyySergiy Kolodyazhnyy
76.2k9159335
76.2k9159335
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
May 2 at 0:39
Yes, here-string would probably be even more preferable forkshandbash
– Sergiy Kolodyazhnyy
May 2 at 0:41
TBH I hadn't even noticed theshtag ...
– steeldriver
May 2 at 0:43
@steeldriver It's negligible since there's a high chance OP is usingbashand since they haven't shown the full script.
– Sergiy Kolodyazhnyy
May 2 at 0:46
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
|
show 1 more comment
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
May 2 at 0:39
Yes, here-string would probably be even more preferable forkshandbash
– Sergiy Kolodyazhnyy
May 2 at 0:41
TBH I hadn't even noticed theshtag ...
– steeldriver
May 2 at 0:43
@steeldriver It's negligible since there's a high chance OP is usingbashand since they haven't shown the full script.
– Sergiy Kolodyazhnyy
May 2 at 0:46
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
1
1
For bash, a here string would be another option:
result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")– steeldriver
May 2 at 0:39
For bash, a here string would be another option:
result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")– steeldriver
May 2 at 0:39
Yes, here-string would probably be even more preferable for
ksh and bash– Sergiy Kolodyazhnyy
May 2 at 0:41
Yes, here-string would probably be even more preferable for
ksh and bash– Sergiy Kolodyazhnyy
May 2 at 0:41
TBH I hadn't even noticed the
sh tag ...– steeldriver
May 2 at 0:43
TBH I hadn't even noticed the
sh tag ...– steeldriver
May 2 at 0:43
@steeldriver It's negligible since there's a high chance OP is using
bash and since they haven't shown the full script.– Sergiy Kolodyazhnyy
May 2 at 0:46
@steeldriver It's negligible since there's a high chance OP is using
bash and since they haven't shown the full script.– Sergiy Kolodyazhnyy
May 2 at 0:46
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
Thank you for the help and also for explaining how are things being executed.
– escobarveras
May 2 at 0:48
|
show 1 more comment
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1139840%2fhow-to-display-a-value-with-zenity%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