( Re Message From: Lawrence Chim )
> 
> Can someone provides me an example script that insert a line
> of text into a text file.  The line should be placed below the
> line section[xyz] and above the line blahblahblahblah.

awk ' {
  print $0 ;
  if ( $0 == "section[xyz]" ) { print "new line of text" ; }
} '

Ted.                                    ([EMAIL PROTECTED])

Reply via email to