Davivienda snippets #davivienda #unix
#Buscar CUS en archivos comprimidos
find -name "*.zip" -print0 | xargs -0 -l zipgrep "265704967" -n | tee evidencia.txt
#Busqueda en AIX
grep -i "PayPal" trazabilidad20180521*
#Buscar en SunOS
find /platserv/fdesa/SCN/EntregasIBM/Portal/PSE/logPSE_laboratorio -type f -exec grep '19/12/2017;' /dev/null {} +
#Todos los archivos cambiados el último día
find . -type f -mtime -1