Created
June 11, 2015 09:32
-
-
Save 844196/35c6a587b93a19779f9a to your computer and use it in GitHub Desktop.
カレントディレクトリ以下のファイル名だけを標準出力(Powershell使用)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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