やりたいこと
Linuxでのwhich
command相当をWindowsで実行したい。
結論
where.exe <コマンド>
を実行する。
which
相当を実施する方法は複数ある(特にPowerShell)が、
where.exe
はPowerShellとCommand Promptで同一コマンドで実行できるのが良い。
実行例
PowerShell
PS C:\Users> where.exe ping
C:\Windows\System32\PING.EXE
PS C:\Users>
Command-Prompt
C:\Users>where.exe ping
C:\Windows\System32\PING.EXE
C:\Users>
参考
Is there an equivalent of 'which' on the Windows command line? - Stack Overflow
http://stackoverflow.com/questions/304319/is-there-an-equivalent-of-which-on-the-windows-command-line