Variable with quotation marks “$()” The 2019 Stack Overflow Developer Survey Results Are InProblem with script substitution when running scriptChange Gsetting with script on Logoutfind does not work with my variableWhat does >> or double Angle brackets mean?Defining and incrementing a variable in bashRename directory using a variableBrackets, Braces, Curly Brackets in BashFor loop with variable incrementwoof does not work with files whose names contains spaces or bracketsAssigned variable for pipeline is not working

How can I add encounters in the Lost Mine of Phandelver campaign without giving PCs too much XP?

How do you keep chess fun when your opponent constantly beats you?

Loose spokes after only a few rides

Are there any other methods to apply to solving simultaneous equations?

Short story: man watches girlfriend's spaceship entering a 'black hole' (?) forever

Deal with toxic manager when you can't quit

Dropping list elements from nested list after evaluation

If climate change impact can be observed in nature, has that had any effect on rural, i.e. farming community, perception of the scientific consensus?

How to type a long/em dash `—`

Did any laptop computers have a built-in 5 1/4 inch floppy drive?

Does HR tell a hiring manager about salary negotiations?

Is bread bad for ducks?

What is this sharp, curved notch on my knife for?

The difference between dialogue marks

Why didn't the Event Horizon Telescope team mention Sagittarius A*?

Getting crown tickets for Statue of Liberty

Can there be female White Walkers?

Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?

How do PCB vias affect signal quality?

Kerning for subscripts of sigma?

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

What is preventing me from simply constructing a hash that's lower than the current target?

How come people say “Would of”?

Correct punctuation for showing a character's confusion



Variable with quotation marks “$()”



The 2019 Stack Overflow Developer Survey Results Are InProblem with script substitution when running scriptChange Gsetting with script on Logoutfind does not work with my variableWhat does >> or double Angle brackets mean?Defining and incrementing a variable in bashRename directory using a variableBrackets, Braces, Curly Brackets in BashFor loop with variable incrementwoof does not work with files whose names contains spaces or bracketsAssigned variable for pipeline is not working



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Previously a member @Evan Chen, wrote this script :



#!/bin/bash
while [ true ]
do
currentoutput="$(lsusb)"
if [ "$currentoutput" != "$lastoutput" ]
then
echo "" date and Time >> test.log
date +%x_r >> test.log
lastoutput="$(lsusb)"
lsusb >> test.log
fi
sleep 5
done


I'm a newbie, trying to learn fast and I got a question about the variable's quotation marks.



Put a variable between $(), I get it, but why the quotation marks are needed, even in the if statement ?



To make a nested command ??



Thanks










share|improve this question









New contributor




Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    1















    Previously a member @Evan Chen, wrote this script :



    #!/bin/bash
    while [ true ]
    do
    currentoutput="$(lsusb)"
    if [ "$currentoutput" != "$lastoutput" ]
    then
    echo "" date and Time >> test.log
    date +%x_r >> test.log
    lastoutput="$(lsusb)"
    lsusb >> test.log
    fi
    sleep 5
    done


    I'm a newbie, trying to learn fast and I got a question about the variable's quotation marks.



    Put a variable between $(), I get it, but why the quotation marks are needed, even in the if statement ?



    To make a nested command ??



    Thanks










    share|improve this question









    New contributor




    Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      1












      1








      1








      Previously a member @Evan Chen, wrote this script :



      #!/bin/bash
      while [ true ]
      do
      currentoutput="$(lsusb)"
      if [ "$currentoutput" != "$lastoutput" ]
      then
      echo "" date and Time >> test.log
      date +%x_r >> test.log
      lastoutput="$(lsusb)"
      lsusb >> test.log
      fi
      sleep 5
      done


      I'm a newbie, trying to learn fast and I got a question about the variable's quotation marks.



      Put a variable between $(), I get it, but why the quotation marks are needed, even in the if statement ?



      To make a nested command ??



      Thanks










      share|improve this question









      New contributor




      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Previously a member @Evan Chen, wrote this script :



      #!/bin/bash
      while [ true ]
      do
      currentoutput="$(lsusb)"
      if [ "$currentoutput" != "$lastoutput" ]
      then
      echo "" date and Time >> test.log
      date +%x_r >> test.log
      lastoutput="$(lsusb)"
      lsusb >> test.log
      fi
      sleep 5
      done


      I'm a newbie, trying to learn fast and I got a question about the variable's quotation marks.



      Put a variable between $(), I get it, but why the quotation marks are needed, even in the if statement ?



      To make a nested command ??



      Thanks







      bash scripts






      share|improve this question









      New contributor




      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 4 mins ago







      Shankhara













      New contributor




      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 11 mins ago









      ShankharaShankhara

      61




      61




      New contributor




      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Shankhara is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          2 Answers
          2






          active

          oldest

          votes


















          1














          In currentoutput="$(lsusb)" lsusb is not a variable, it is a command. What this statement does, it executes lsusb command and assigns its output to currentoutput variable.



          Older syntax for this was



          currentoutput=`lsusb`


          you can find it in many examples and scripts



          To answer the other part of your question, if [ ] is just how syntax for if is defined in bash. See more in https://www.tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html





          share






























            1














            The following runs the external command command and returns its output.



            "$(command)"


            Without the brackets/parentheses, this would look for a variable instead of running a command:



            "$variable"


            As for the difference between $variable and "$variable", this becomes relevant when $variable contains spaces. When using "$variable", the entire variable contents will be inserted into a single string even if the contents include spaces. When using $variable the contents of the variable may be expanded into an argument list of multiple arguments.





            share

























            • HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

              – Shankhara
              5 mins 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
            );



            );






            Shankhara is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1133173%2fvariable-with-quotation-marks%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            In currentoutput="$(lsusb)" lsusb is not a variable, it is a command. What this statement does, it executes lsusb command and assigns its output to currentoutput variable.



            Older syntax for this was



            currentoutput=`lsusb`


            you can find it in many examples and scripts



            To answer the other part of your question, if [ ] is just how syntax for if is defined in bash. See more in https://www.tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html





            share



























              1














              In currentoutput="$(lsusb)" lsusb is not a variable, it is a command. What this statement does, it executes lsusb command and assigns its output to currentoutput variable.



              Older syntax for this was



              currentoutput=`lsusb`


              you can find it in many examples and scripts



              To answer the other part of your question, if [ ] is just how syntax for if is defined in bash. See more in https://www.tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html





              share

























                1












                1








                1







                In currentoutput="$(lsusb)" lsusb is not a variable, it is a command. What this statement does, it executes lsusb command and assigns its output to currentoutput variable.



                Older syntax for this was



                currentoutput=`lsusb`


                you can find it in many examples and scripts



                To answer the other part of your question, if [ ] is just how syntax for if is defined in bash. See more in https://www.tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html





                share













                In currentoutput="$(lsusb)" lsusb is not a variable, it is a command. What this statement does, it executes lsusb command and assigns its output to currentoutput variable.



                Older syntax for this was



                currentoutput=`lsusb`


                you can find it in many examples and scripts



                To answer the other part of your question, if [ ] is just how syntax for if is defined in bash. See more in https://www.tldp.org/LDP/Bash-Beginners-Guide/html/sect_07_01.html






                share











                share


                share










                answered 5 mins ago









                marosgmarosg

                45437




                45437























                    1














                    The following runs the external command command and returns its output.



                    "$(command)"


                    Without the brackets/parentheses, this would look for a variable instead of running a command:



                    "$variable"


                    As for the difference between $variable and "$variable", this becomes relevant when $variable contains spaces. When using "$variable", the entire variable contents will be inserted into a single string even if the contents include spaces. When using $variable the contents of the variable may be expanded into an argument list of multiple arguments.





                    share

























                    • HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

                      – Shankhara
                      5 mins ago















                    1














                    The following runs the external command command and returns its output.



                    "$(command)"


                    Without the brackets/parentheses, this would look for a variable instead of running a command:



                    "$variable"


                    As for the difference between $variable and "$variable", this becomes relevant when $variable contains spaces. When using "$variable", the entire variable contents will be inserted into a single string even if the contents include spaces. When using $variable the contents of the variable may be expanded into an argument list of multiple arguments.





                    share

























                    • HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

                      – Shankhara
                      5 mins ago













                    1












                    1








                    1







                    The following runs the external command command and returns its output.



                    "$(command)"


                    Without the brackets/parentheses, this would look for a variable instead of running a command:



                    "$variable"


                    As for the difference between $variable and "$variable", this becomes relevant when $variable contains spaces. When using "$variable", the entire variable contents will be inserted into a single string even if the contents include spaces. When using $variable the contents of the variable may be expanded into an argument list of multiple arguments.





                    share















                    The following runs the external command command and returns its output.



                    "$(command)"


                    Without the brackets/parentheses, this would look for a variable instead of running a command:



                    "$variable"


                    As for the difference between $variable and "$variable", this becomes relevant when $variable contains spaces. When using "$variable", the entire variable contents will be inserted into a single string even if the contents include spaces. When using $variable the contents of the variable may be expanded into an argument list of multiple arguments.






                    share













                    share


                    share








                    edited 5 mins ago

























                    answered 8 mins ago









                    thomasrutterthomasrutter

                    27.3k47089




                    27.3k47089












                    • HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

                      – Shankhara
                      5 mins ago

















                    • HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

                      – Shankhara
                      5 mins ago
















                    HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

                    – Shankhara
                    5 mins ago





                    HI @thomasrutter, I'm sorry, i meant quotation mark ... I edit my comment now !

                    – Shankhara
                    5 mins ago










                    Shankhara is a new contributor. Be nice, and check out our Code of Conduct.









                    draft saved

                    draft discarded


















                    Shankhara is a new contributor. Be nice, and check out our Code of Conduct.












                    Shankhara is a new contributor. Be nice, and check out our Code of Conduct.











                    Shankhara is a new contributor. Be nice, and check out our Code of Conduct.














                    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%2f1133173%2fvariable-with-quotation-marks%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

                    Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

                    Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

                    Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»