3 lines
97 B
PowerShell
3 lines
97 B
PowerShell
Get-ChildItem -Recurse |
|
|
Where-Object { $_.Name -match 'foo[0-9]' } |
|
|
ForEach-Object { ... }
|