在Linux中,我们具有“哪个”命令来查找可执行文件的路径。
Windows等效项是什么?有没有执行此操作的PowerShell命令?
另请参见stackoverflow.com/questions/304319/...
—
ysap
在Linux中,我们具有“哪个”命令来查找可执行文件的路径。
Windows等效项是什么?有没有执行此操作的PowerShell命令?
Answers:
Windows的某些版本(我认为Windows 2003及更高版本)具有where命令:
c:\>where ping
C:\Windows\System32\PING.EXE
where
在Windows 7中为我工作
where /r c:\ fileName
添加/ RC:\让我来执行递归搜索开始使用Windows 7专业版,似乎不会在C盘的根目录access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/...
where.exe ping
因为where
默认情况下别名为Where-Object
cmdlet,而这是完全不同的故事
where.exe
where
在PowerShell中为我明确而不是为我工作
where.exe
而不是where
在PowerShell中为我工作:
PS C:\Users\birdc> where ping
PS C:\Users\birdc> where.exe ping
C:\Windows\System32\PING.EXE
where ping
在PowerShell中没有任何帮助。
where.exe
。