powershell で現在実行されている関数の名前を取得するにはどうすればよいですか? これが私が欲しいものの例です:
Function write-FunctionName
{
write-host "The name of this function is: *SomethingGoesHereButWhat?*"
}
次に、実行すると、次のように表示されます。
>write-FunctionName
The name of this function is: write-FunctioName
>
これはできますか?もしそうなら、どのように?