#!/bin/sh

# This reports a sorted list of the "unknown" file extensions
# analyzed by a previous run of SLOCCount, most common first.
# Use this to make sure that there isn't a common language type
# that you are NOT counting.

find ${HOME}/.slocdata -name 'unknown_list.dat' -exec cat {} \; | \
   count_extensions  | less

