How to modify a variable in a file












1















I have a config file like this:



# Default LIST="nil"
LIST="element1 element2 element3"


What would be the simplest way to modify LIST from a shell script?










share|improve this question




















  • 1





    Can you elaborate on what you have in mind? What's the goal and what have you tried so far?

    – eblock
    Jan 23 at 10:06











  • I believe the rest of the details would convolute the question.

    – Alberto Salvia Novella
    Jan 23 at 10:13








  • 1





    @AlbertoSalviaNovella I believe you should state what you are after. If you have multiple strings in a variable you probably want an array variable like list=( element1 element2 element3 )

    – Valentin Bajrami
    Jan 23 at 10:19











  • The variable I want to modify is already defined as a single string, but thanks for the point.

    – Alberto Salvia Novella
    Jan 23 at 10:43
















1















I have a config file like this:



# Default LIST="nil"
LIST="element1 element2 element3"


What would be the simplest way to modify LIST from a shell script?










share|improve this question




















  • 1





    Can you elaborate on what you have in mind? What's the goal and what have you tried so far?

    – eblock
    Jan 23 at 10:06











  • I believe the rest of the details would convolute the question.

    – Alberto Salvia Novella
    Jan 23 at 10:13








  • 1





    @AlbertoSalviaNovella I believe you should state what you are after. If you have multiple strings in a variable you probably want an array variable like list=( element1 element2 element3 )

    – Valentin Bajrami
    Jan 23 at 10:19











  • The variable I want to modify is already defined as a single string, but thanks for the point.

    – Alberto Salvia Novella
    Jan 23 at 10:43














1












1








1








I have a config file like this:



# Default LIST="nil"
LIST="element1 element2 element3"


What would be the simplest way to modify LIST from a shell script?










share|improve this question
















I have a config file like this:



# Default LIST="nil"
LIST="element1 element2 element3"


What would be the simplest way to modify LIST from a shell script?







text-processing scripting






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 23 at 11:31







Alberto Salvia Novella

















asked Jan 23 at 10:03









Alberto Salvia NovellaAlberto Salvia Novella

1105




1105








  • 1





    Can you elaborate on what you have in mind? What's the goal and what have you tried so far?

    – eblock
    Jan 23 at 10:06











  • I believe the rest of the details would convolute the question.

    – Alberto Salvia Novella
    Jan 23 at 10:13








  • 1





    @AlbertoSalviaNovella I believe you should state what you are after. If you have multiple strings in a variable you probably want an array variable like list=( element1 element2 element3 )

    – Valentin Bajrami
    Jan 23 at 10:19











  • The variable I want to modify is already defined as a single string, but thanks for the point.

    – Alberto Salvia Novella
    Jan 23 at 10:43














  • 1





    Can you elaborate on what you have in mind? What's the goal and what have you tried so far?

    – eblock
    Jan 23 at 10:06











  • I believe the rest of the details would convolute the question.

    – Alberto Salvia Novella
    Jan 23 at 10:13








  • 1





    @AlbertoSalviaNovella I believe you should state what you are after. If you have multiple strings in a variable you probably want an array variable like list=( element1 element2 element3 )

    – Valentin Bajrami
    Jan 23 at 10:19











  • The variable I want to modify is already defined as a single string, but thanks for the point.

    – Alberto Salvia Novella
    Jan 23 at 10:43








1




1





Can you elaborate on what you have in mind? What's the goal and what have you tried so far?

– eblock
Jan 23 at 10:06





Can you elaborate on what you have in mind? What's the goal and what have you tried so far?

– eblock
Jan 23 at 10:06













I believe the rest of the details would convolute the question.

– Alberto Salvia Novella
Jan 23 at 10:13







I believe the rest of the details would convolute the question.

– Alberto Salvia Novella
Jan 23 at 10:13






1




1





@AlbertoSalviaNovella I believe you should state what you are after. If you have multiple strings in a variable you probably want an array variable like list=( element1 element2 element3 )

– Valentin Bajrami
Jan 23 at 10:19





@AlbertoSalviaNovella I believe you should state what you are after. If you have multiple strings in a variable you probably want an array variable like list=( element1 element2 element3 )

– Valentin Bajrami
Jan 23 at 10:19













The variable I want to modify is already defined as a single string, but thanks for the point.

– Alberto Salvia Novella
Jan 23 at 10:43





The variable I want to modify is already defined as a single string, but thanks for the point.

– Alberto Salvia Novella
Jan 23 at 10:43










2 Answers
2






active

oldest

votes


















3














Use sed:



sed -i 's/LIST=.*/LIST="element4 element5"/' config_file


If you only want LIST to be updated if it's not commented, add ^ (start of line):



sed -i 's/^LIST=.*/LIST="element4 element5"/' config_file





share|improve this answer


























  • That solves my problem. Thank you ;)

    – Alberto Salvia Novella
    Jan 23 at 10:44











  • I detected an issue. If LIST is in COMMENT, it will also be changed there.

    – Alberto Salvia Novella
    Jan 23 at 11:31











  • Thats not a bug, it's a feature ;-) See my update.

    – RoVo
    Jan 23 at 11:34













  • Now it works nicely :P

    – Alberto Salvia Novella
    Jan 23 at 12:21



















1














Same answer as the accepted one, but ready to use in a script. In case someone finds it useful:



#! /bin/bash
# (GPL3+) Alberto Salvia Novella (es20490446e)


modifyVariableInFile () {
variable="${1}"
content="${2}"
file="${3}"

if [ ! -f "${file}" ]; then
echo "modifyVariableInFile: file doesn't exist: ${file}"
exit 1
fi

sed -i "s/^${variable}=.*/${variable}="${content}"/" "${file}"
}


modifyVariableInFile ${@}





share|improve this answer

























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "106"
    };
    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: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    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%2funix.stackexchange.com%2fquestions%2f496168%2fhow-to-modify-a-variable-in-a-file%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









    3














    Use sed:



    sed -i 's/LIST=.*/LIST="element4 element5"/' config_file


    If you only want LIST to be updated if it's not commented, add ^ (start of line):



    sed -i 's/^LIST=.*/LIST="element4 element5"/' config_file





    share|improve this answer


























    • That solves my problem. Thank you ;)

      – Alberto Salvia Novella
      Jan 23 at 10:44











    • I detected an issue. If LIST is in COMMENT, it will also be changed there.

      – Alberto Salvia Novella
      Jan 23 at 11:31











    • Thats not a bug, it's a feature ;-) See my update.

      – RoVo
      Jan 23 at 11:34













    • Now it works nicely :P

      – Alberto Salvia Novella
      Jan 23 at 12:21
















    3














    Use sed:



    sed -i 's/LIST=.*/LIST="element4 element5"/' config_file


    If you only want LIST to be updated if it's not commented, add ^ (start of line):



    sed -i 's/^LIST=.*/LIST="element4 element5"/' config_file





    share|improve this answer


























    • That solves my problem. Thank you ;)

      – Alberto Salvia Novella
      Jan 23 at 10:44











    • I detected an issue. If LIST is in COMMENT, it will also be changed there.

      – Alberto Salvia Novella
      Jan 23 at 11:31











    • Thats not a bug, it's a feature ;-) See my update.

      – RoVo
      Jan 23 at 11:34













    • Now it works nicely :P

      – Alberto Salvia Novella
      Jan 23 at 12:21














    3












    3








    3







    Use sed:



    sed -i 's/LIST=.*/LIST="element4 element5"/' config_file


    If you only want LIST to be updated if it's not commented, add ^ (start of line):



    sed -i 's/^LIST=.*/LIST="element4 element5"/' config_file





    share|improve this answer















    Use sed:



    sed -i 's/LIST=.*/LIST="element4 element5"/' config_file


    If you only want LIST to be updated if it's not commented, add ^ (start of line):



    sed -i 's/^LIST=.*/LIST="element4 element5"/' config_file






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jan 23 at 11:33

























    answered Jan 23 at 10:07









    RoVoRoVo

    3,247216




    3,247216













    • That solves my problem. Thank you ;)

      – Alberto Salvia Novella
      Jan 23 at 10:44











    • I detected an issue. If LIST is in COMMENT, it will also be changed there.

      – Alberto Salvia Novella
      Jan 23 at 11:31











    • Thats not a bug, it's a feature ;-) See my update.

      – RoVo
      Jan 23 at 11:34













    • Now it works nicely :P

      – Alberto Salvia Novella
      Jan 23 at 12:21



















    • That solves my problem. Thank you ;)

      – Alberto Salvia Novella
      Jan 23 at 10:44











    • I detected an issue. If LIST is in COMMENT, it will also be changed there.

      – Alberto Salvia Novella
      Jan 23 at 11:31











    • Thats not a bug, it's a feature ;-) See my update.

      – RoVo
      Jan 23 at 11:34













    • Now it works nicely :P

      – Alberto Salvia Novella
      Jan 23 at 12:21

















    That solves my problem. Thank you ;)

    – Alberto Salvia Novella
    Jan 23 at 10:44





    That solves my problem. Thank you ;)

    – Alberto Salvia Novella
    Jan 23 at 10:44













    I detected an issue. If LIST is in COMMENT, it will also be changed there.

    – Alberto Salvia Novella
    Jan 23 at 11:31





    I detected an issue. If LIST is in COMMENT, it will also be changed there.

    – Alberto Salvia Novella
    Jan 23 at 11:31













    Thats not a bug, it's a feature ;-) See my update.

    – RoVo
    Jan 23 at 11:34







    Thats not a bug, it's a feature ;-) See my update.

    – RoVo
    Jan 23 at 11:34















    Now it works nicely :P

    – Alberto Salvia Novella
    Jan 23 at 12:21





    Now it works nicely :P

    – Alberto Salvia Novella
    Jan 23 at 12:21













    1














    Same answer as the accepted one, but ready to use in a script. In case someone finds it useful:



    #! /bin/bash
    # (GPL3+) Alberto Salvia Novella (es20490446e)


    modifyVariableInFile () {
    variable="${1}"
    content="${2}"
    file="${3}"

    if [ ! -f "${file}" ]; then
    echo "modifyVariableInFile: file doesn't exist: ${file}"
    exit 1
    fi

    sed -i "s/^${variable}=.*/${variable}="${content}"/" "${file}"
    }


    modifyVariableInFile ${@}





    share|improve this answer






























      1














      Same answer as the accepted one, but ready to use in a script. In case someone finds it useful:



      #! /bin/bash
      # (GPL3+) Alberto Salvia Novella (es20490446e)


      modifyVariableInFile () {
      variable="${1}"
      content="${2}"
      file="${3}"

      if [ ! -f "${file}" ]; then
      echo "modifyVariableInFile: file doesn't exist: ${file}"
      exit 1
      fi

      sed -i "s/^${variable}=.*/${variable}="${content}"/" "${file}"
      }


      modifyVariableInFile ${@}





      share|improve this answer




























        1












        1








        1







        Same answer as the accepted one, but ready to use in a script. In case someone finds it useful:



        #! /bin/bash
        # (GPL3+) Alberto Salvia Novella (es20490446e)


        modifyVariableInFile () {
        variable="${1}"
        content="${2}"
        file="${3}"

        if [ ! -f "${file}" ]; then
        echo "modifyVariableInFile: file doesn't exist: ${file}"
        exit 1
        fi

        sed -i "s/^${variable}=.*/${variable}="${content}"/" "${file}"
        }


        modifyVariableInFile ${@}





        share|improve this answer















        Same answer as the accepted one, but ready to use in a script. In case someone finds it useful:



        #! /bin/bash
        # (GPL3+) Alberto Salvia Novella (es20490446e)


        modifyVariableInFile () {
        variable="${1}"
        content="${2}"
        file="${3}"

        if [ ! -f "${file}" ]; then
        echo "modifyVariableInFile: file doesn't exist: ${file}"
        exit 1
        fi

        sed -i "s/^${variable}=.*/${variable}="${content}"/" "${file}"
        }


        modifyVariableInFile ${@}






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 23 at 12:20

























        answered Jan 23 at 10:46









        Alberto Salvia NovellaAlberto Salvia Novella

        1105




        1105






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Unix & Linux Stack Exchange!


            • 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%2funix.stackexchange.com%2fquestions%2f496168%2fhow-to-modify-a-variable-in-a-file%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

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith