Замена переменных, содержащих переводы строк в терминале macOS - PullRequest
0 голосов
/ 03 октября 2018

Я пытаюсь заменить содержимое переменной, состоящей из новых строк в MacOS Terminal, но эта ошибка или некоторые другие ошибки отображаются:

echo $index | sed "s/{{content_2}}/$side/g"

вывод:

sed: 1: "s/{{content_2}}/<div cl ...": unescaped newline inside

заменительpattern

Это индекс $:

{{navbar}} {{content_10}} {{content_2}} {{footer}}

Это сторона $:

 <div class="col-md-2"><div class="content" id="contentAside"><h5 class="text-uppercase pt-3">Aside</h5><div class="card" style="width: 18rem;"><img class="card-img-top" src="img/card.jpg" alt="Card image cap"><div class="card-body"><h5 class="card-title">Card title</h5><p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p><hr><p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p><hr><p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p><hr><p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p><hr><a href="#" class="btn btn-primary">Go somewhere</a></div></div></div></div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...