Windows 下的 which 命令 (Get-Command)

Linux 下的很多工具用起来很方便,比如 cat、grep、awk、sed、which 等等。

其中 which 可以用来查找当前环境中的某个程序的具体路径在哪里。

Windows 下安装过 Git for Windows 后,也可以使用这些常用的linux命令。

其实,还有另外一种方法,可以使用 PowershellGet-Command指令。

例如:

1
2
3
4
5
6
7
8
9
10
PS C:\Users\liangxinhui\Desktop> Get-Command ssh

CommandType Name Version Source
----------- ---- ------- ------
Application ssh.exe 0.0.0.0 C:\Program Files\Git\usr\bin\ssh.exe


PS C:\Users\liangxinhui\Desktop> which ssh
/usr/bin/ssh