Difference between revisions of "Sed"

From Blue-IT.org Wiki

Line 11: Line 11:
 
<h1 class = title>
 
<h1 class = title>
 
  Lorem ipsum
 
  Lorem ipsum
</h1>  
+
</h1>
 
<div id=content>
 
<div id=content>
 
   <div id=abstract>
 
   <div id=abstract>
Line 28: Line 28:
 
</nowiki></pre>
 
</nowiki></pre>
  
The next snippet searches for the first (!) - and only the first - occurence of the Expression "FIRST_TEXT_FRAGMENT" and then, from that line on to the first occourence of "LAST_TEXT_FRAGMENT"
+
We like to cut out the ''abstract'' and get:
 +
 
 +
<pre><nowiki>
 +
<h1 class = title>
 +
Lorem ipsum
 +
</h1>
 +
<div id=content>
 +
At vero eos et accusam et justo duo dolores et ea rebum.
 +
Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
 +
Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
 +
sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
 +
sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
 +
Stet clita kasd gubergren,
 +
no sea takimata sanctus est Lorem ipsum dolor sit amet.
 +
</div>
 +
</nowiki></pre>
 +
 
 +
The next snippet searches for the first (!) - and only the first - occurence of the Expression "FIRST_TEXT_FRAGMENT" and then, from that line on to the first occurence of "LAST_TEXT_FRAGMENT". It then cuts the out with ''sed''.
  
 
<pre><nowiki>
 
<pre><nowiki>
Line 50: Line 67:
  
 
cat tmp1 | sed -e "${BEGIN_CUT},${END_CUT}d" > tmp2
 
cat tmp1 | sed -e "${BEGIN_CUT},${END_CUT}d" > tmp2
 +
rm tmp1
 
</nowiki></pre>
 
</nowiki></pre>

Revision as of 09:18, 15 February 2012

Save search and replace

search="$(printf "%s\n" "src=\"${SUBDIR}" | sed 's/[][\.*^$/]/\\&/g')"
replace="$(printf "%s\n" "src=\"${ANOTHER_DIR}/${SUBDIR}" | sed 's/[][\.*^$/]/\\&/g')"
sed "s/${search}/${replace}/g" "${DOC}"

Cut a certain passage out of a file

Let's assume we have the following sample text:

<h1 class = title>
 Lorem ipsum
</h1>
<div id=content>
  <div id=abstract>
   Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
   sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, 
   sed diam voluptua. 
  </div>
 At vero eos et accusam et justo duo dolores et ea rebum. 
 Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. 
 Lorem ipsum dolor sit amet, consetetur sadipscing elitr, 
 sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
 sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. 
 Stet clita kasd gubergren, 
 no sea takimata sanctus est Lorem ipsum dolor sit amet.
</div>

We like to cut out the abstract and get:

<h1 class = title>
 Lorem ipsum
</h1> 
<div id=content>
 At vero eos et accusam et justo duo dolores et ea rebum. 
 Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. 
 Lorem ipsum dolor sit amet, consetetur sadipscing elitr, 
 sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,
 sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. 
 Stet clita kasd gubergren, 
 no sea takimata sanctus est Lorem ipsum dolor sit amet.
</div>

The next snippet searches for the first (!) - and only the first - occurence of the Expression "FIRST_TEXT_FRAGMENT" and then, from that line on to the first occurence of "LAST_TEXT_FRAGMENT". It then cuts the out with sed.

ARTICLE="${1}"

cat "${ARTICLE}" > tmp1
LENGTH=$(wc "${ARTICLE}" | awk '{print $1}')
LENGTH=$(expr ${LENGTH} - 1)
echo "Length: ${LENGTH}"

FIRST_TEXT_FRAGMENT="<div id=abstract>"
LAST_TEXT_FRAGMENT="</div>"
 
BEGIN_CUT=$(cat tmp1 | fgrep -n --max-count=1 "${FIRST_TEXT_FRAGMENT}" | cut -d':' -f1)
BEGIN_CUT=$(expr ${BEGIN_CUT})
echo ${BEGIN_CUT}

END_CUT=$(cat tmp1 | sed -e "${BEGIN_CUT},${LENGTH}d" | fgrep -n --max-count=1 "${LAST_TEXT_FRAGMENT}" | cut -d':' -f1)
END_CUT=$(expr ${END_CUT} - 1 + ${BEGIN_CUT})
echo ${END_CUT}

cat tmp1 | sed -e "${BEGIN_CUT},${END_CUT}d" > tmp2
rm tmp1