mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-07 21:46:52 +02:00
Fixed typo
This commit is contained in:
parent
a38160468e
commit
b0772a7f93
@ -16,7 +16,7 @@ try {
|
|||||||
[int]$Count = 0
|
[int]$Count = 0
|
||||||
write-progress "Listing hidden files in $DirTree ..."
|
write-progress "Listing hidden files in $DirTree ..."
|
||||||
get-childItem $DirTree -attributes Hidden -recurse | foreach-object {
|
get-childItem $DirTree -attributes Hidden -recurse | foreach-object {
|
||||||
write-output "$_.FullName"
|
write-output $_.FullName
|
||||||
$Count++
|
$Count++
|
||||||
}
|
}
|
||||||
write-host -foregroundColor green "OK - found $Count hidden file(s)"
|
write-host -foregroundColor green "OK - found $Count hidden file(s)"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user