Sign in
pigweed
/
third_party
/
github
/
FreeRTOS
/
FreeRTOS-Kernel
/
9af72db3ec82993df2f50170bccdf2958ad19137
/
.
/
.github
/
scripts
/
find_replace.sh
blob: c7ee7965c910045d8b32c0808f3c30a80a066125 [
file
] [
log
] [
blame
]
#!/bin/bash
old_text
=
$1
new_text
=
$2
echo
"Old text: ${old_text}"
echo
"New text: ${new_text}"
grep
-
rl
"${old_text}"
.
|
xargs gsed
-
i
-
e
'1h;2,$H;$!d;g'
-
e
"s/${old_text}/${new_text}/g"