Fish Shell 中的 Bash set
在本文中,我们将学习在 Fish shell 中 bash set -e
、set -u
和 set -x
。
Bash set -x
set -x
命令用于调试 Bash 脚本,方法是将每个执行的语句打印到 shell 以进行调试和故障排除。set -x
命令可以直接在交互式 Bash shell 或 Bash 脚本中运行。
set -x
命令通常将 Bash shell 的初始化放在 sh-bang
之后。
在此示例中,我们使用 set -x
命令启用调试。默认情况下,在 Bash 中禁用调试。
相反,每条语句都会打印到 Bash 终端,然后是语句的结果,以方便验证。例如,echo "The First Tree"
先写,然后是结果。
此外,调试语句以加号开头。
#!/bin/bash
set -x
echo " The First Tree"
echo "The Second Tree"
输出:
+ echo ' The First Tree'
The First Tree
+ echo 'The Second Tree'
The Second Tree
Bash set -e
set -e
命令可用于停止脚本或函数的执行,如果我们依赖脚本或函数的执行并想要有关结果的精确信息,则返回非零错误代码。
默认情况下,如果 Bash 函数和脚本的执行正确完成且没有错误,则返回 0。但是,如果出现问题,错误代码会提供有关该错误的特定详细信息。
在下面的示例中,如果在脚本开头发生错误,我们将配置退出。由于没有 root 权限,mkdir /root/test
返回错误,无法创建目录。
因此,echo "Progress..."
行现在可以运行并显示在终端上。
#!/bin/bash
set -e
mkdir /root/test
echo "Progress..."
Bash set -u
set-u
命令指示 Bash shell 将未设置的变量解释为错误并立即退出。这使我们更接近高级语言的行为。
set -u
命令可以防止和显示未使用的 Bash 变量的错误。
例子:
#!/bin/bash
firstName="Jackie"
fullName="$firstname John"
echo "$fullName"
请参考前面的例子。你看到错误了吗?
在第三行的右侧,单词"firstname"
全部小写,而不是驼峰式。如果没有 -u
选项,则不会显示此错误。
然而,使用 -u
选项,脚本在该行终止,退出代码 1
,并且消息 "firstname: unbound variable"
打印到 stderr
。
通常,我们希望它明确而迅速地失败,而不是创建可能要到很久以后才能发现的细微错误。
Fish Shell 命令
set fish_trace 1 # display the expanded command line before execution
set fish_trace 2 # prepend file and line number to the command line
set fish_trace 1 1 # print the command line before execution and the exit status following execution.
set fish_trace 1 2 # as above, except print the exit status of all subprocesses (?)
set fish_trace 0 1 # print command-line exit status
这些选项,例如 set -u
、set -e
和 set -x
,在 Fish 中不存在。在 Fish 中设置变量没有专门的语法。
相反,它使用一个标准命令:set
,它接受一个变量名和它的值。如果同时提供了变量和值,则 set
将值分配给具有指定名称的变量。
允许多个值,因为 Fish 中的所有变量都是列表。