findファイル検索find . -name "*.txt" # Bash gci -r "*.txt" | ft -a FullName,Mode # PowerShell gci(dir)コマンドレットの-Recurseオプションを使う。 より複雑な絞込み検索をする場合dir -r | where { $_.Name -Like "*.txt" -and $_.LastWriteTime -gt "2013-07-01" } | ft -a FullName where-objectを使う。 find -execオプションによるコマンドの実行PSコマンドレットを実行する場合find . -name "*.txt" -exec rm {} \; # Bash dir -r "*.txt" | del # PowerShell
非PSコマンドレットを実行する場合find . -excc grep "ABC {} # Bash dir -r | % { grep.exe "ABC" $_.fullname } # PowerShell
|
|