example <title>this is it</title> if we want to extract just this is it.
echo '<title>this is it</title>' | sed -nE 's/<title>(.*)<\/title>/\1/p'
example <title>this is it</title> if we want to extract just this is it.
echo '<title>this is it</title>' | sed -nE 's/<title>(.*)<\/title>/\1/p'