- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/UNIX系コマンド群との対応/find へ行く。
- 1 (2013-07-18 (木) 16:46:23)
- 2 (2013-07-18 (木) 16:51:22)
find
コマンドレットgci
gci -Recurse -Filter "*.txt" # 1 gci -Recurse | where { $_.LastWriteTime -gt "2013-02-01" } # 2 gci -Recurse | where { $_.CreationTime -gt (Get-Date).AddDays(-3) } | Select-Object name # 3
- #1 ファイル名の末尾が.txtのファイル
- #2 2/1以降のファイル
- #3 3日前までに作られたファイルのファイル名のみ
find -exec オプション
find . -excc grep "ABC {}
gci -R | % { grep "ABC" $_.fullname }