PowerShell/scripts/count-lines-of-code.ps1

41 lines
1.3 KiB
PowerShell
Raw Normal View History

2023-10-31 12:12:58 +01:00
<#
2022-08-10 15:57:43 +02:00
.SYNOPSIS
2023-09-12 22:24:57 +02:00
Counts the lines of code (LOC)
2022-08-10 15:57:43 +02:00
.DESCRIPTION
2023-10-09 16:54:17 +02:00
This PowerShell script counts the number of code lines in source code files (.c/.h/.cpp/.hpp/.java/.ps1/.txt/.md) within a directory tree.
2023-09-12 22:24:57 +02:00
.PARAMETER path
2023-09-19 15:46:28 +02:00
Specifies the path to the directory tree.
2022-08-10 15:57:43 +02:00
.EXAMPLE
2023-10-09 16:54:17 +02:00
PS> ./count-lines-of-code.ps1 cmake
📂cmake has 11411 source code files with 639921 lines of code (LOC, took 34 sec)
2022-08-10 15:57:43 +02:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
2023-09-12 22:24:57 +02:00
param([string]$path = "")
2022-08-10 15:57:43 +02:00
try {
2023-09-19 15:46:28 +02:00
if ($path -eq "" ) { $path = Read-Host "Enter the path to the directory tree" }
2022-08-10 15:57:43 +02:00
Write-Progress "Counting lines.."
2023-09-19 15:46:28 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2023-09-12 22:24:57 +02:00
$path = Resolve-Path "$path"
2022-08-10 15:57:43 +02:00
2023-10-09 16:54:17 +02:00
[int64]$files = [int64]$LOC = 0
Get-ChildItem -Path $path -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1,*.txt,*.md -Recurse | ForEach-Object {
$LOC += (Get-Content $_.FullName | Measure-Object -line).Lines
2023-09-19 15:46:28 +02:00
$files++
2022-08-10 15:57:43 +02:00
}
2023-09-19 15:46:28 +02:00
$folderName = (Get-Item "$path").Name
2023-10-09 16:54:17 +02:00
Write-Progress -completed " "
2023-09-19 15:46:28 +02:00
[int]$Elapsed = $stopWatch.Elapsed.TotalSeconds
2023-10-09 16:54:17 +02:00
"✔️ 📂$folderName has $files source code files with $LOC lines of code (LOC, took $Elapsed sec)"
2022-08-10 15:57:43 +02:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}