Created
October 17, 2012 16:31
-
-
Save avambro/3906564 to your computer and use it in GitHub Desktop.
find not images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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