Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/11/2010, 13:16
fcoredo
 
Fecha de Ingreso: noviembre-2010
Mensajes: 38
Antigüedad: 14 años, 1 mes
Puntos: 2
Respuesta: Script para buscar datos

Prueba esto:

Código:
cat archivo1 |
(read L

  while [ $? -eq 0 ]
  do
    grep -qis "$L" archivo2

    if [ $? -ne 0 ]
    then
      echo $L
    fi

    read L
  done
)
Suerte.