Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > 006dfcfcbd82fe85939295c457c1b043 > files > 7

mawk-1.3.4-5.20100625.fc14.x86_64.rpm

#!/usr/bin/mawk -f

#  ct_length.awk
#
#  replaces all length 
#  by  length($0)
#


{

  while ( i = index($0, "length") )
  {
     printf "%s" , substr($0,1, i+5)  # ...length
     $0 = substr($0,i+6)

     if ( match($0, /^[ \t]*\(/) )
     {
       # its OK
       printf "%s", substr($0, 1, RLENGTH)
       $0 = substr($0, RLENGTH+1)
     }
     else # length alone
       printf "($0)"

  }
  print
}