How to modify a variable in a file
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
add a comment |
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
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 likelist=( 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
add a comment |
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
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
text-processing scripting
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 likelist=( 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
add a comment |
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 likelist=( 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
add a comment |
2 Answers
2
active
oldest
votes
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
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
add a comment |
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 ${@}
add a comment |
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
});
}
});
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%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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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 ${@}
add a comment |
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 ${@}
add a comment |
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 ${@}
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 ${@}
edited Jan 23 at 12:20
answered Jan 23 at 10:46
Alberto Salvia NovellaAlberto Salvia Novella
1105
1105
add a comment |
add a comment |
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.
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%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
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
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