2023-07-29 10:34:04 +02:00
|
|
|
*count-lines-of-code.ps1*
|
|
|
|
================
|
2022-11-17 19:46:02 +01:00
|
|
|
|
2023-09-20 17:05:11 +02:00
|
|
|
This PowerShell script counts the number of code lines in a directory tree.
|
2022-11-17 19:46:02 +01:00
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2022-11-17 19:46:02 +01:00
|
|
|
```powershell
|
2023-09-13 09:49:05 +02:00
|
|
|
PS> ./count-lines-of-code.ps1 [[-path] <String>] [<CommonParameters>]
|
2022-11-17 19:46:02 +01:00
|
|
|
|
2023-09-13 09:49:05 +02:00
|
|
|
-path <String>
|
2023-09-20 17:05:11 +02:00
|
|
|
Specifies the path to the directory tree.
|
2022-11-17 19:46:02 +01:00
|
|
|
|
|
|
|
Required? false
|
|
|
|
Position? 1
|
|
|
|
Default value
|
|
|
|
Accept pipeline input? false
|
|
|
|
Accept wildcard characters? false
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Example
|
|
|
|
-------
|
2022-11-17 19:46:02 +01:00
|
|
|
```powershell
|
2023-08-06 21:36:33 +02:00
|
|
|
PS> ./count-lines-of-code.ps1 .
|
2023-09-20 17:05:11 +02:00
|
|
|
✔️ 19765 lines of code (LOC) in 578 files in 📂Scripts (it took 1 sec)
|
2022-11-17 19:46:02 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Notes
|
|
|
|
-----
|
2022-11-17 19:46:02 +01:00
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Related Links
|
|
|
|
-------------
|
2022-11-17 19:46:02 +01:00
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2022-11-17 20:05:34 +01:00
|
|
|
```powershell
|
2022-11-17 20:02:26 +01:00
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2023-09-13 09:49:05 +02:00
|
|
|
Counts the lines of code (LOC)
|
2022-11-17 20:02:26 +01:00
|
|
|
.DESCRIPTION
|
2023-09-20 17:05:11 +02:00
|
|
|
This PowerShell script counts the number of code lines in a directory tree.
|
2023-09-13 09:49:05 +02:00
|
|
|
.PARAMETER path
|
2023-09-20 17:05:11 +02:00
|
|
|
Specifies the path to the directory tree.
|
2022-11-17 20:02:26 +01:00
|
|
|
.EXAMPLE
|
2023-08-06 21:36:33 +02:00
|
|
|
PS> ./count-lines-of-code.ps1 .
|
2023-09-20 17:05:11 +02:00
|
|
|
✔️ 19765 lines of code (LOC) in 578 files in 📂Scripts (it took 1 sec)
|
2022-11-17 20:02:26 +01:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
2023-09-13 09:49:05 +02:00
|
|
|
param([string]$path = "")
|
2022-11-17 20:02:26 +01:00
|
|
|
|
|
|
|
try {
|
2023-09-20 17:05:11 +02:00
|
|
|
if ($path -eq "" ) { $path = Read-Host "Enter the path to the directory tree" }
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-09-20 17:05:11 +02:00
|
|
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
2023-09-13 09:49:05 +02:00
|
|
|
$path = Resolve-Path "$path"
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-09-13 09:49:05 +02:00
|
|
|
Write-Progress "⏳ Counting lines of code in 📂$path ..."
|
2023-09-20 17:05:11 +02:00
|
|
|
[int]$files = [int]$LOC = 0
|
2023-09-13 09:49:05 +02:00
|
|
|
Get-ChildItem -Path $path -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1 -Recurse | ForEach-Object {
|
2023-09-20 17:05:11 +02:00
|
|
|
$fileStats = Get-Content $_.FullName | Measure-Object -line
|
|
|
|
$LOC += $fileStats.Lines
|
|
|
|
$files++
|
2022-11-17 20:02:26 +01:00
|
|
|
}
|
2023-09-13 09:49:05 +02:00
|
|
|
Write-Progress -completed "."
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-09-20 17:05:11 +02:00
|
|
|
$folderName = (Get-Item "$path").Name
|
|
|
|
[int]$Elapsed = $stopWatch.Elapsed.TotalSeconds
|
|
|
|
"✔️ $LOC lines of code (LOC) in $files files in 📂$folderName (took $Elapsed sec)"
|
2022-11-17 20:02:26 +01:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
2022-11-17 20:05:34 +01:00
|
|
|
```
|
2022-11-17 20:02:26 +01:00
|
|
|
|
2023-09-20 17:05:11 +02:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of count-lines-of-code.ps1 as of 09/20/2023 17:04:39)*
|