Lineas repetidas en AWK

From Luniwiki
Jump to: navigation, search

Truco

Para encontrar 2 lineas con el mismo campo repetido a consecución:

BEGIN {
ant="@@@@";
}
{
  if ( index($1,ant) ==1 )
     print "Actual #" $1 "# Anterior #" ant "#";
  ant = $1;
}

Referencias

--Daniel Simao 11:06 18 may 2010 (UTC)