如何检索当前在 powershell 中运行的函数的名称?这是我想要的一个例子:
Function write-FunctionName
{
write-host "The name of this function is: *SomethingGoesHereButWhat?*"
}
然后当我执行它时,它会显示:
>write-FunctionName
The name of this function is: write-FunctioName
>
这可以做到吗?如果有怎么办?