-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathwc.ps1
53 lines (42 loc) · 1.02 KB
/
wc.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<#
Author: Doug Finke
Email: [email protected]
Blog: https://dfinke.github.io/
Twitter: https://twitter.com/dfinke
GitHub: https://github.com/dfinke
YouTube: https://www.youtube.com/dougfinke
PowerShell Meetup: https://www.meetup.com/NycPowershellMeetup/
LinkedIn: https://www.linkedin.com/in/douglasfinke/
#>
param(
[Parameter(ValueFromPipeline)]
$file
)
Begin {
$list = @()
}
Process {
if (Test-Path $file) {
$contents = Get-Content -Raw $file
}
else {
$contents = $file
}
}
End {
$lines = 0
$words = 0
$characters = 0
if ($null -ne $contents) {
$contents = $contents.Trim()
$lines = $contents.Split("`n").Count
$words = [regex]::Split($contents, '\W+').Count
$characters = $contents.ToCharArray().Count
}
[PSCustomObject]@{
lines = $lines
words = $words
characters = $characters
name = $file
}
}