从Powershell调用zsh函数-在Mac终端中

时间:2019-07-18 10:57:38

标签: powershell zsh

我在~/.zshrc中有一个简单的功能

zshrc:

function someThing() {}

现在我想从Powershel调用此函数,您该怎么做?

我尝试过

Powershell:

Test-Zshrc-Function() {
 someThing
 # and
 -ScriptBlock ${function:someThing} -ArgumentList "arg one"
}

1 个答案:

答案 0 :(得分:0)

我玩。这确实是zsh的问题。运行命令并进行交互。函数名称区分大小写。在powershell中,您可以在$ profile中定义函数。

zsh -ci someThing