Are you new here? Subscribe to my RSS feed. Thanks for visiting!Need to find out what all the file types in a certain directory are? Simple!
Execute the following on the command line:
find /path/here/ -type f -print | xargs file
I typed: find /home/adam/test/ -type f -print | xargs file
The output will look something like […]
Popularity: 3% [?]

