我在~/.zshrc
中有一个简单的功能
zshrc:
function someThing() {}
现在我想从Powershel调用此函数,您该怎么做?
我尝试过
Powershell:
Test-Zshrc-Function() {
someThing
# and
-ScriptBlock ${function:someThing} -ArgumentList "arg one"
}
答案 0 :(得分:0)
我玩。这确实是zsh的问题。运行命令并进行交互。函数名称区分大小写。在powershell中,您可以在$ profile中定义函数。
zsh -ci someThing