I would like to know how to:
Replace all lines between two matching patterns (not include the patterns - exclusive). Please note that these will be on separate lines.
Replace all lines between and including two matching patterns (inclusive). Please note that these will be on separate lines I have started the first, but its not producing the desired results (actaully no results so far). Please keep in mind that this is for sed on Mac OSX (BSD). The pattern in this case is two html comments on separate lines.
My shell script looks like this:
REPLACEWITH="Replacement text here"
sed -i '' -e "s&\(<!--BeginNotes-->\).*\(<!--EndNotes-->\)&\1$REPLACEWITH\2&" /Users/BlaNameHere/builds/development/index.php
In the head of my index.php file is this excerpt:
<!--BeginNotes-->
<!--asdasd-->
<script type="application/javascript">var Jaop;</script>
<!--EndNotes-->
example result a
<!DOCTYPE html>
<html>
<head>
<title></title>
<!--BeginNotes-->
Replacement text here
<!--EndNotes-->
</head>
<body>
</body>
</html>
example result b
<!DOCTYPE html>
<html>
<head>
<title></title>
Replacement text here
</head>
<body>
</body>
</html>
A perl one-liner:
This uses the
-0777
option to read the entire file as a single string, which requires thes
modifier on thes///s
commandThat one-liner is roughly equivalent to