ksh 的“whence -v”在 PowerShell 中的等效项是什么?

ksh 的“whence -v”在 PowerShell 中的等效项是什么?

来自以下评论http://www.davidarno.org/2008/04/08/pash-powershell-for-the-rest-of-us/

使用 ksh,我可以输入whence -v cd来确定这cd是 的跟踪别名/bin/cd。在 PowerShell 中,cd是 的别名Set-Location,但我之所以发现这一点,是因为我输入了help cd,并获得了Set-Location帮助页面。该whence -v命令将报告该项目是函数、别名、跟踪别名,还是提供文件位置。

我们如何在 PowerShell 中做到这一点?

答案1

使用Get-Command具有方便别名的 cmdlet gcm

> 获取命令 cd

命令类型名称 模块名称
----------- ---- ----------
别名 cd -> 设置位置

相关内容