Skip to content

Instantly share code, notes, and snippets.

@avambro
Created October 17, 2012 16:31
Show Gist options
  • Save avambro/3906564 to your computer and use it in GitHub Desktop.
Save avambro/3906564 to your computer and use it in GitHub Desktop.
find not images
Cómo encontrar archivos en un directorio que NO SEAN imagenes en #linux:
find . -type f -exec file -i '{}' | grep -v "image" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment