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;








2















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




























    2















    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
























      2












      2








      2








      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 5 hours ago









      escobarverasescobarveras

      153




      153




















          1 Answer
          1






          active

          oldest

          votes


















          2














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











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











          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









          2














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











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















          2














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











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













          2












          2








          2







          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 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 for ksh and bash

            – Sergiy Kolodyazhnyy
            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











          • Thank you for the help and also for explaining how are things being executed.

            – escobarveras
            5 hours ago












          • 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 for ksh and bash

            – Sergiy Kolodyazhnyy
            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











          • 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

















          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

          Log på Navigationsmenu

          Creating second map without labels using QGIS?How to lock map labels for inset map in Print Composer?How to Force the Showing of Labels of a Vector File in QGISQGIS Valmiera, Labels only show for part of polygonsRemoving duplicate point labels in QGISLabeling every feature using QGIS?Show labels for point features outside map canvasAbbreviate Road Labels in QGIS only when requiredExporting map from composer in QGIS - text labels have moved in output?How to make sure labels in qgis turn up in layout map?Writing label expression with ArcMap and If then Statement?

          Nuuk Indholdsfortegnelse Etyomologi | Historie | Geografi | Transport og infrastruktur | Politik og administration | Uddannelsesinstitutioner | Kultur | Venskabsbyer | Noter | Eksterne henvisninger | Se også | Navigationsmenuwww.sermersooq.gl64°10′N 51°45′V / 64.167°N 51.750°V / 64.167; -51.75064°10′N 51°45′V / 64.167°N 51.750°V / 64.167; -51.750DMI - KlimanormalerSalmonsen, s. 850Grønlands Naturinstitut undersøger rensdyr i Akia og Maniitsoq foråret 2008Grønlands NaturinstitutNy vej til Qinngorput indviet i dagAntallet af biler i Nuuk må begrænsesNy taxacentral mødt med demonstrationKøreplan. Rute 1, 2 og 3SnescootersporNuukNord er for storSkoler i Kommuneqarfik SermersooqAtuarfik Samuel KleinschmidtKangillinguit AtuarfiatNuussuup AtuarfiaNuuk Internationale FriskoleIlinniarfissuaq, Grønlands SeminariumLedelseÅrsberetning for 2008Kunst og arkitekturÅrsberetning for 2008Julie om naturenNuuk KunstmuseumSilamiutGrønlands Nationalmuseum og ArkivStatistisk ÅrbogGrønlands LandsbibliotekStore koncerter på stribeVandhund nummer 1.000.000Kommuneqarfik Sermersooq – MalikForsidenVenskabsbyerLyngby-Taarbæk i GrønlandArctic Business NetworkWinter Cities 2008 i NuukDagligt opdaterede satellitbilleder fra NuukområdetKommuneqarfik Sermersooqs hjemmesideTurist i NuukGrønlands Statistiks databankGrønlands Hjemmestyres valgresultaterrrWorldCat124325457671310-5