Skip to content

Instantly share code, notes, and snippets.

@devlights
Created April 2, 2018 08:36
Show Gist options
  • Save devlights/4cbe012d5601211b77192b9235c10f33 to your computer and use it in GitHub Desktop.
Save devlights/4cbe012d5601211b77192b9235c10f33 to your computer and use it in GitHub Desktop.
[windows] windows で linux の find コマンドのようにファイルを検索するコマンド

where コマンドを利用する

> where /r ベースフォルダ 検索対象ファイルパターン(ワイルドカード指定可能)

現在のフォルダから再帰的に *.ini にマッチするファイルを検索する

> where /r . *.ini
@devlights
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment