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
How do LIGO and VIRGO know that a gravitational wave has its origin in a neutron star or a black hole?
If stationary points and minima are equivalent, then the function is convex?
Verb "geeitet" in an old scientific text
What is the most remote airport from the center of the city it supposedly serves?
As matter approaches a black hole, does it speed up?
Purpose of のは in this sentence?
How did Shepard's and Grissom's speeds compare with orbital velocity?
Will 700 more planes a day fly because of the Heathrow expansion?
What happens if you dump antimatter into a black hole?
Should I mention being denied entry to UK due to a confusion in my Visa and Ticket bookings?
How do I tell my manager that his code review comment is wrong?
Position of past participle and extent of the Verbklammer
What is the closest airport to the center of the city it serves?
What does this colon mean? It is not labeling, it is not ternary operator
Randomness of Python's random
Can Infinity Stones be retrieved more than once?
How wide is a neg symbol, how to get the width for alignment?
What was the first instance of a "planet eater" in sci-fi?
Are there any Final Fantasy Spirits in Super Smash Bros Ultimate?
Why is B♯ higher than C♭ in 31-ET?
Which module had more 'comfort' in terms of living space, the Lunar Module or the Command module?
What are the differences between credential stuffing and password spraying?
Why is [person X] visibly scared in the library in Game of Thrones S8E3?
Would Hubble Space Telescope improve black hole image observed by EHT if it joined array of telesopes?
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 4 hours ago
escobarverasescobarveras
153
153
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
result
with parameters=
and"(1+1/$szAnswer)^$szAnswer"
- connect the
stdout
stream of theresult
command tobc
command'sstdin
stream
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
4 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
4 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
4 hours ago
@steeldriver It's negligible since there's a high chance OP is usingbash
and since they haven't shown the full script.
– Sergiy Kolodyazhnyy
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
|
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
result
with parameters=
and"(1+1/$szAnswer)^$szAnswer"
- connect the
stdout
stream of theresult
command tobc
command'sstdin
stream
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
4 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
4 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
4 hours ago
@steeldriver It's negligible since there's a high chance OP is usingbash
and since they haven't shown the full script.
– Sergiy Kolodyazhnyy
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
|
show 1 more comment
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l
line. It reads:
- execute command
result
with parameters=
and"(1+1/$szAnswer)^$szAnswer"
- connect the
stdout
stream of theresult
command tobc
command'sstdin
stream
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
4 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
4 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
4 hours ago
@steeldriver It's negligible since there's a high chance OP is usingbash
and since they haven't shown the full script.
– Sergiy Kolodyazhnyy
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
|
show 1 more comment
The problem is result = "(1+1/$szAnswer)^$szAnswer" | bc -l
line. It reads:
- execute command
result
with parameters=
and"(1+1/$szAnswer)^$szAnswer"
- connect the
stdout
stream of theresult
command tobc
command'sstdin
stream
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
result
with parameters=
and"(1+1/$szAnswer)^$szAnswer"
- connect the
stdout
stream of theresult
command tobc
command'sstdin
stream
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 4 hours ago
answered 4 hours ago
Sergiy KolodyazhnyySergiy Kolodyazhnyy
76.1k9159334
76.1k9159334
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
4 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
4 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
4 hours ago
@steeldriver It's negligible since there's a high chance OP is usingbash
and since they haven't shown the full script.
– Sergiy Kolodyazhnyy
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
|
show 1 more comment
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
4 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
4 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
4 hours ago
@steeldriver It's negligible since there's a high chance OP is usingbash
and since they haven't shown the full script.
– Sergiy Kolodyazhnyy
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
1
1
For bash, a here string would be another option:
result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
4 hours ago
For bash, a here string would be another option:
result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
4 hours ago
Yes, here-string would probably be even more preferable for
ksh
and bash
– Sergiy Kolodyazhnyy
4 hours ago
Yes, here-string would probably be even more preferable for
ksh
and bash
– Sergiy Kolodyazhnyy
4 hours ago
TBH I hadn't even noticed the
sh
tag ...– steeldriver
4 hours ago
TBH I hadn't even noticed the
sh
tag ...– steeldriver
4 hours ago
@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
4 hours ago
@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
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
4 hours ago
|
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