mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-01 06:04:41 +02:00
Renamed to count-lines.ps1 and updated it
This commit is contained in:
parent
c8f6edfe04
commit
dddfe0eb80
@ -1,40 +0,0 @@
|
|||||||
<#
|
|
||||||
.SYNOPSIS
|
|
||||||
Counts the lines of code (LOC)
|
|
||||||
.DESCRIPTION
|
|
||||||
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.
|
|
||||||
.PARAMETER path
|
|
||||||
Specifies the path to the directory tree.
|
|
||||||
.EXAMPLE
|
|
||||||
PS> ./count-lines-of-code.ps1 cmake
|
|
||||||
✔️ 📂cmake has 11411 source code files with 639921 lines of code (LOC, took 34 sec)
|
|
||||||
.LINK
|
|
||||||
https://github.com/fleschutz/PowerShell
|
|
||||||
.NOTES
|
|
||||||
Author: Markus Fleschutz | License: CC0
|
|
||||||
#>
|
|
||||||
|
|
||||||
param([string]$path = "")
|
|
||||||
|
|
||||||
try {
|
|
||||||
if ($path -eq "" ) { $path = Read-Host "Enter the path to the directory tree" }
|
|
||||||
|
|
||||||
Write-Progress "Counting lines.."
|
|
||||||
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
||||||
$path = Resolve-Path "$path"
|
|
||||||
|
|
||||||
[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
|
|
||||||
$files++
|
|
||||||
}
|
|
||||||
|
|
||||||
$folderName = (Get-Item "$path").Name
|
|
||||||
Write-Progress -completed " "
|
|
||||||
[int]$Elapsed = $stopWatch.Elapsed.TotalSeconds
|
|
||||||
"✔️ 📂$folderName has $files source code files with $LOC lines of code (LOC, took $Elapsed sec)"
|
|
||||||
exit 0 # success
|
|
||||||
} catch {
|
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
||||||
exit 1
|
|
||||||
}
|
|
40
scripts/count-lines.ps1
Executable file
40
scripts/count-lines.ps1
Executable file
@ -0,0 +1,40 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Counts the number of lines
|
||||||
|
.DESCRIPTION
|
||||||
|
This PowerShell script counts the number of lines in text files (.c/.h/.cpp/.hpp/.java/.ps1/.txt/.md) within a directory tree.
|
||||||
|
.PARAMETER pathToDirTree
|
||||||
|
Specifies the path to the directory tree.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./count-lines.ps1 C:\cmake
|
||||||
|
✔️ Found 639921 lines in 11411 text files within 📂cmake in 34 sec.
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz | License: CC0
|
||||||
|
#>
|
||||||
|
|
||||||
|
param([string]$pathToDirTree = "")
|
||||||
|
|
||||||
|
try {
|
||||||
|
if ($pathToDirTree -eq "" ) { $pathToDirTree = Read-Host "Enter the path to the directory tree" }
|
||||||
|
|
||||||
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||||
|
$pathToDirTree = Resolve-Path "$pathToDirTree"
|
||||||
|
Write-Progress "Counting lines within $pathToDirTree ..."
|
||||||
|
|
||||||
|
[int64]$numFiles = [int64]$numLines = 0
|
||||||
|
Get-ChildItem -Path $pathToDirTree -Include *.c,*.h,*.cpp,*.hpp,*.java,*.ps1,*.txt,*.md -Recurse | ForEach-Object {
|
||||||
|
$numLines += (Get-Content $_.FullName | Measure-Object -line).Lines
|
||||||
|
$numFiles++
|
||||||
|
}
|
||||||
|
|
||||||
|
$folderName = (Get-Item "$pathToDirTree").Name
|
||||||
|
Write-Progress -completed " "
|
||||||
|
[int]$Elapsed = $stopWatch.Elapsed.TotalSeconds
|
||||||
|
"✔️ Found $numLines lines in $numFiles text files within 📂$folderName in $Elapsed sec."
|
||||||
|
exit 0 # success
|
||||||
|
} catch {
|
||||||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user