/etc/bash.bashrc
中,我看到以下内容: # set variable IDentifying the chroot you work in (used in the prompt below)if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then debian_chroot=$(cat /etc/debian_chroot)fi
这是对令牌debian_chroot的第一次引用.
为什么这段代码使用${debian_chroot: – }而不只是$debian_chroot?
Bash的Shell Parameter Expansion说:
${parameter:-word}
If parameter is unset or null,the expansion of word is substituted. Otherwise,the value of parameter is substituted.
这里,“word”为null,为什么还要将null替换为null?
解决方法 语法${debian_chroot: – }阻止shell在使用set -u运行时退出(使用未定义变量时崩溃)并且此时未设置debian_chroot.您不希望普通的交互式shell设置-u(它会很容易崩溃),但它在脚本中非常有用.
看到这个:
bash -c 'set -u; [ -z $a ]; echo ok' # errorbash -c 'set -u; a=; [ -z $a ]; echo ok' # okbash -c 'set -u; [ -z ${a:-} ]; echo ok' # okbash -c 'set -u; a=; [ -z ${a:-} ]; echo ok' # ok总结
以上是内存溢出为你收集整理的linux – shell:当var未设置或为null时,${var: – }的目的是什么?全部内容,希望文章能够帮你解决linux – shell:当var未设置或为null时,${var: – }的目的是什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)