24 de enero de 2010

Condicional if grep


#!/bin/bash
if grep -q textoabuscar archivo
then
echo "texto esta en el fichero"
else
echo "texto NO esta en el fichero"
fi
exit 0


Ref.:
if condition and grep

No hay comentarios:

Publicar un comentario