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
BOOM! Perfect Clear for Mr. T
Can you complete the sequence?
Building a list of products from the elements in another list
What property of a BJT transistor makes it an amplifier?
Does a card have a keyword if it has the same effect as said keyword?
Why are prions in animal diets not destroyed by the digestive system?
If stationary points and minima are equivalent, then the function is convex?
Why is B♯ higher than C♭ in 31-ET?
Why isn't nylon as strong as kevlar?
In Avengers 1, why does Thanos need Loki?
Have I damaged my car by attempting to reverse with hand/park brake up?
Should I mention being denied entry to UK due to a confusion in my Visa and Ticket bookings?
Why was the battle set up *outside* Winterfell?
How long would it take for people to notice a mass disappearance?
Can my company stop me from working overtime?
What are the advantages of luxury car brands like Acura/Lexus over their sibling non-luxury brands Honda/Toyota?
How I can I roll a number of non-digital dice to get a random number between 1 and 150?
What is the difference between 反日 and 日本たたき?
Can an isometry leave entropy invariant?
Are there any Final Fantasy Spirits in Super Smash Bros Ultimate?
Using a microphone from the 1930s
What was the design of the Macintosh II's MMU replacement?
Purpose of のは in this sentence?
Shantae Dance Matching
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 5 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
5 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
5 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
5 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
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 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
5 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
5 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
5 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
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 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
5 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
5 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
5 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
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 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 5 hours ago
answered 5 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
5 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
5 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
5 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
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 hours ago
|
show 1 more comment
1
For bash, a here string would be another option:result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
5 hours ago
Yes, here-string would probably be even more preferable forksh
andbash
– Sergiy Kolodyazhnyy
5 hours ago
TBH I hadn't even noticed thesh
tag ...
– steeldriver
5 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
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 hours ago
1
1
For bash, a here string would be another option:
result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
5 hours ago
For bash, a here string would be another option:
result=$(bc -l <<< "(1+1/$szAnswer)^$szAnswer")
– steeldriver
5 hours ago
Yes, here-string would probably be even more preferable for
ksh
and bash
– Sergiy Kolodyazhnyy
5 hours ago
Yes, here-string would probably be even more preferable for
ksh
and bash
– Sergiy Kolodyazhnyy
5 hours ago
TBH I hadn't even noticed the
sh
tag ...– steeldriver
5 hours ago
TBH I hadn't even noticed the
sh
tag ...– steeldriver
5 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
5 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
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 hours ago
Thank you for the help and also for explaining how are things being executed.
– escobarveras
5 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