CLOC
fima cloc is a utility for getting the LOC (Lines Of Code) of a program.
Usage
fima cloc [PATHS] [OPTIONS]
options:
-i, --ignore TEXT ...Paths to ignore-S, --sort TEXTType of sorting (total (default), files, code, comments, blank)-q, --quietEnables quiet output-G, --no-gitignoreIgnore .gitignore-s, --show-languagesShows all the languages that cloc supports
Examples
sh
# Basic CLOC
fima cloc
# Quiet CLOC
fima cloc -q
# Ignoring files and different sorting
fima cloc -i "*.h" -S files
# Ignore .gitignore rules
fima cloc -GShowcase


