1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/common/scc.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

36 lines
743 B
Markdown

# scc
> Count lines of code. Written in Go.
> More information: <https://github.com/boyter/scc>.
- Print lines of code in the current directory:
`scc`
- Print lines of code in the target directory:
`scc {{path/to/directory}}`
- Display output for every file:
`scc --by-file`
- Display output using a specific output format (defaults to `tabular`):
`scc --format {{tabular|wide|json|csv|cloc-yaml|html|html-table}}`
- Only count files with specific file extensions:
`scc --include-ext {{go,java,js}}`
- Exclude directories from being counted:
`scc --exclude-dir {{.git,.hg}}`
- Display output and sort by column (defaults to by files):
`scc --sort {{files|name|lines|blanks|code|comments|complexity}}`
- Display help:
`scc -h`