Archives pour: Juillet 2008
07.07.08
How to search for text files under linux
Here's a nice command which leverages find and file to search for text/* mime type files amongst binary files:
Code:
| find . -type f | xargs file -Ni | grep "text/" | cut -d":" -f 1 |