Article complet: How to search for text files under linux
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 |
Trackback address for this post:
http://vidal.biz/blogs/htsrv/trackback.php/1103
Comments, Trackbacks, Pingbacks:
No Comments/Trackbacks/Pingbacks for this post yet...
Comments are not allowed from anonymous visitors.