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;








3















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.










share|improve this question




























    3















    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.










    share|improve this question
























      3












      3








      3








      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.










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 2 at 0:29









      escobarverasescobarveras

      203




      203




















          1 Answer
          1






          active

          oldest

          votes


















          3














          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 the result command to bc command's stdin 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.






          share|improve this answer




















          • 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 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











          • @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











          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
          );



          );













          draft saved

          draft discarded


















          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









          3














          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 the result command to bc command's stdin 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.






          share|improve this answer




















          • 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 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











          • @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















          3














          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 the result command to bc command's stdin 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.






          share|improve this answer




















          • 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 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











          • @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













          3












          3








          3







          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 the result command to bc command's stdin 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.






          share|improve this answer















          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 the result command to bc command's stdin 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.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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 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











          • @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












          • 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 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











          • @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







          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

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

          What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

          Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos