Skip to content

Instantly share code, notes, and snippets.

@844196
Created June 11, 2015 09:32
Show Gist options
  • Save 844196/35c6a587b93a19779f9a to your computer and use it in GitHub Desktop.
Save 844196/35c6a587b93a19779f9a to your computer and use it in GitHub Desktop.
カレントディレクトリ以下のファイル名だけを標準出力(Powershell使用)
powershell -NoProfile -ExecutionPolicy Unrestricted -Command "& { Get-ChildItem -recurse | Where-Object {$_ -is [System.IO.FileInfo]} | %%{$_.name} }"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment