how to add words before line on all the scripts in current folder
up vote
-1
down vote
favorite
under /home/scrript , we have 187 bash scripts
all the scripts have the following line:
kill -PIPE $PID
we want to add the following words before this line on all the scripts as the following
[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
the reason for that is to avoid editing of each script , and use Linux commands as sed to do in one shoot on all the scripts,
linux text-processing awk sed perl
add a comment |
up vote
-1
down vote
favorite
under /home/scrript , we have 187 bash scripts
all the scripts have the following line:
kill -PIPE $PID
we want to add the following words before this line on all the scripts as the following
[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
the reason for that is to avoid editing of each script , and use Linux commands as sed to do in one shoot on all the scripts,
linux text-processing awk sed perl
theunixschool.com/2012/06/…
– Peschke
Dec 2 at 6:53
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
under /home/scrript , we have 187 bash scripts
all the scripts have the following line:
kill -PIPE $PID
we want to add the following words before this line on all the scripts as the following
[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
the reason for that is to avoid editing of each script , and use Linux commands as sed to do in one shoot on all the scripts,
linux text-processing awk sed perl
under /home/scrript , we have 187 bash scripts
all the scripts have the following line:
kill -PIPE $PID
we want to add the following words before this line on all the scripts as the following
[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
the reason for that is to avoid editing of each script , and use Linux commands as sed to do in one shoot on all the scripts,
linux text-processing awk sed perl
linux text-processing awk sed perl
edited Dec 2 at 14:43
Jeff Schaller
37.1k1052121
37.1k1052121
asked Dec 2 at 6:42
yael
2,3301955
2,3301955
theunixschool.com/2012/06/…
– Peschke
Dec 2 at 6:53
add a comment |
theunixschool.com/2012/06/…
– Peschke
Dec 2 at 6:53
theunixschool.com/2012/06/…
– Peschke
Dec 2 at 6:53
theunixschool.com/2012/06/…
– Peschke
Dec 2 at 6:53
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
$ for i in /home/scrript/*; do sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"; done
Explanation
for i in /home/scrript/*; do FOO; done
: repeat for all files in/home/scrript
. N.B. depending on your shell configuration this might skip dot files.
sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"
: for each file ("$i"
), replace "in-place" (sed -i
), replacingkill -PIPE $PID
with[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
. (N.B. you need to escape the&
as they have a special meaning otherwise.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
$ for i in /home/scrript/*; do sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"; done
Explanation
for i in /home/scrript/*; do FOO; done
: repeat for all files in/home/scrript
. N.B. depending on your shell configuration this might skip dot files.
sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"
: for each file ("$i"
), replace "in-place" (sed -i
), replacingkill -PIPE $PID
with[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
. (N.B. you need to escape the&
as they have a special meaning otherwise.
add a comment |
up vote
1
down vote
$ for i in /home/scrript/*; do sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"; done
Explanation
for i in /home/scrript/*; do FOO; done
: repeat for all files in/home/scrript
. N.B. depending on your shell configuration this might skip dot files.
sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"
: for each file ("$i"
), replace "in-place" (sed -i
), replacingkill -PIPE $PID
with[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
. (N.B. you need to escape the&
as they have a special meaning otherwise.
add a comment |
up vote
1
down vote
up vote
1
down vote
$ for i in /home/scrript/*; do sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"; done
Explanation
for i in /home/scrript/*; do FOO; done
: repeat for all files in/home/scrript
. N.B. depending on your shell configuration this might skip dot files.
sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"
: for each file ("$i"
), replace "in-place" (sed -i
), replacingkill -PIPE $PID
with[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
. (N.B. you need to escape the&
as they have a special meaning otherwise.
$ for i in /home/scrript/*; do sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"; done
Explanation
for i in /home/scrript/*; do FOO; done
: repeat for all files in/home/scrript
. N.B. depending on your shell configuration this might skip dot files.
sed -i 's/kill -PIPE $PID/[[ $KILL_STATUS = YES ]] && kill -PIPE $PID/' "$i"
: for each file ("$i"
), replace "in-place" (sed -i
), replacingkill -PIPE $PID
with[[ $KILL_STATUS = YES ]] && kill -PIPE $PID
. (N.B. you need to escape the&
as they have a special meaning otherwise.
answered Dec 2 at 7:06
Sparhawk
9,04063889
9,04063889
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f485448%2fhow-to-add-words-before-line-on-all-the-scripts-in-current-folder%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
theunixschool.com/2012/06/…
– Peschke
Dec 2 at 6:53