如何在 fish shell 中运行 make && make install

如何在 fish shell 中运行 make && make install

我已经安装了 fish shell,我对它非常满意...但我无法运行以下命令:

make && make install

这在 bash 中运行良好...我如何在 fish shell 中运行它?

答案1

文档

如果当前退出状态(由上一个命令设置)为 0,则使用内置命令 and 来执行命令。

COMMAND1; and COMMAND2

因此你可以调用:

make; and make install

相关内容