如何在 fish shell 中获取程序的退出状态
How to get exit status of program in fish shell
在 bash shell 中,我可以 echo $?
在 cli 上获取程序 运行 的退出代码。鱼shell中的等价物是什么?似乎无法在文档中找到它。
根据the official Fish documentation,您可以使用$status
变量:
How do I get the exit status of a command?
Use the $status
variable. This replaces the $?
variable used in some other shells.
在 bash shell 中,我可以 echo $?
在 cli 上获取程序 运行 的退出代码。鱼shell中的等价物是什么?似乎无法在文档中找到它。
根据the official Fish documentation,您可以使用$status
变量:
How do I get the exit status of a command?
Use the
$status
variable. This replaces the$?
variable used in some other shells.