Skip to content

Instantly share code, notes, and snippets.

View koryonik's full-sized avatar
🏠
Working from home

Damien Roch koryonik

🏠
Working from home
View GitHub Profile
@koryonik
koryonik / list-text-files-encoding.rst
Last active August 29, 2015 14:05
Bash : List text files encoding in a directory tree
How to list text files and their encoding from a dir tree

Simple listing:

$ find . -type f -exec file -i {} \;"

Filter by encoding, eg. utf-8: