追加のコマンドレットがインストールされていない場合は、単純に Get-ChildItem
を使用できます :
Get-ChildItem -Filter *.zip -Recurse $pwd
Find-ChildItem
Windows Powershell のコマンドレットは、Unix/Linux の find コマンドに相当します
http://windows-powershell-scripts.blogspot.in/2009/08/unix-linux-find-equivalent-in.html
Find-ChildItem オプションの一部
<オール>Find-ChildItem -Type f -Name ".*.exe"
Find-ChildItem -Type f -Name "\.c$" -Exec "Get-Content {} | Measure-Object -Line -Character -Word"
Find-ChildItem -Type f -Empty
Find-ChildItem -Type f -Empty -OutObject
Find-ChildItem -Type f -Empty -Delete
Find-ChildItem -Type f -Size +9M -Delete
Find-ChildItem -Type d
Find-ChildItem -Type f -Size +50m -WTime +5 -MaxDepth 1 -Delete
開示:私は Find-ChildItem
の開発者です コマンドレット
dir <drive: [drive:]> /s | findstr /i <pattern>
- 代替 -
dir /s <drive:>\<pattern>
例
dir c: d: /s | findstr /i example.txt
- 代替 -
dir /s c:\example.txt