Epic personal notes from Jigi33
Blog active from May'2022
Blog active from May'2022
SED fans tutorial & references
Запись от jigi33 размещена 10.05.2024 в 18:02
Показов 62
Комментарии 1
SED обучалка + справочник (от Alex Harvey) (SED из простых усваиваемых элементов) для ритмичного изучения https://alexharv074.github.io/... rence.html |
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
Всего комментариев 1
Комментарии
-
continue an article in a comments
____
How to insert a line using sed before a pattern and after a line number?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~
a)
b)Bash Скопировано 1
sed -i '11a\\nText to insert _after_ line 11' ./qt1.txt # (with an extra newline)
Bash Скопировано 1
sed -i '10i\\nText to insert _before_ line 10' ./qt1.txt # (with an extra newline)
So, and how to insert a line with match:
~~~~~~~~~~~~~~~~~~~~~~~~~~~
a) append some 'hello world' line after word [Paths] match:
b) insert some 'hello world' line before match word [Paths]:Bash Скопировано 1
sed -i '/\[Paths\]/a Hello Brave World' ./qt1.txt
Bash Скопировано 1
sed -i '/\[Paths\]/i Hello Brave World' ./qt1.txt
BONUS:
Additionally, we can take backup and edit input file in-place using -i.bkp option to sed.Запись от jigi33 размещена 28.02.2025 в 20:14