Answers:
在此特定示例中,没有区别。但是,如果要扩展字符串中的变量,则{}
in ${}
很有用foo
"${foo}bar"
因为"$foobar"
它将改为扩展由标识的变量foobar
。
在以下情况下,也无条件需要大括号:
${array[42]}
${filename%.*}
(删除扩展名)所示"$8 $9 ${10} ${11}"
这样无处不在,而不是只在潜在不确定的情况下,可以被认为是良好的编程习惯。这既是为了保持一致性,又是为了避免类似的意外情况$foo_$bar.jpg
,在下划线看起来不是变量名的一部分在视觉上并不明显。
$()
用于执行命令,这样md5sum=$(md5sum foo.bin)
会将命令的输出存储md5sum foo.bin
在变量中md5sum
,现在可以使用进行访问${md5sum}
。此外,OP还要在+1上更加精神,因为要明确指出这是一个好习惯!
$()
从subshell执行其命令很重要。
${1:-20}
是参数扩展的一种形式。在此并不明显,因为它主要使用数字和算术运算符,使我们误以为涉及算术,但实际上是指位置参数$1
,如果未定义,它将被默认值替换20
(语法为${variable:-default_value}
)。
在没有$
和没有的情况下声明和分配变量{}
。你必须用
var=10
分派。为了从变量中读取(换句话说,“扩展”变量),必须使用$
。
$var # use the variable
${var} # same as above
${var}bar # expand var, and append "bar" too
$varbar # same as ${varbar}, i.e expand a variable called varbar, if it exists.
有时这使我感到困惑-在其他语言中,无论变量是在赋值的左侧还是右侧,我们都以相同的方式引用该变量。但是shell脚本是不同的,$var=10
它并没有实现您可能认为的那样!
您{}
用于分组。需要大括号来取消引用数组元素。例:
dir=(*) # store the contents of the directory into an array
echo "${dir[0]}" # get the first entry.
echo "$dir[0]" # incorrect
dir=(*)
。据我所知,这dir
是一个内置命令来列出目录内容(等效于ls -C -b
)。你能解释一下吗?
dir
是变量的名称,括号用于将文件名扩展收集*
到数组中。
变量名的末尾通常用空格或换行符表示。但是,如果我们在打印变量值后不想要空格或换行符怎么办?花括号告诉shell解释器变量名的末尾在哪里。
TIME=10
# WRONG: no such variable called 'TIMEsecs'
echo "Time taken = $TIMEsecs"
# What we want is $TIME followed by "secs" with no whitespace between the two.
echo "Time taken = ${TIME}secs"
# WRONG - no such variable LATESTVERSION_src
CLASSPATH=hibernate-$LATESTVERSION_src.zip:hibernate_$LATEST_VERSION.jar
# RIGHT
CLASSPATH=hibernate-${LATESTVERSION}_src.zip:hibernate_$LATEST_VERSION.jar
(弗雷德的回答已经说明了这一点,但是他的例子有点抽象)
访问数组元素和执行括号扩展始终需要弯括号。
最好不要过于谨慎,{}
即使在没有歧义的情况下也可以用于shell变量扩展。
例如:
dir=log
prog=foo
path=/var/${dir}/${prog} # excessive use of {}, not needed since / can't be a part of a shell variable name
logfile=${path}/${prog}.log # same as above, . can't be a part of a shell variable name
path_copy=${path} # {} is totally unnecessary
archive=${logfile}_arch # {} is needed since _ can be a part of shell variable name
因此,最好将三行写为:
path=/var/$dir/$prog
logfile=$path/$prog.log
path_copy=$path
绝对更易读。
由于变量名不能以数字开头,因此外壳程序不需要{}
在编号的变量周围(例如$1
,$2
等),除非在此类扩展名后加上数字。这太微妙了,确实可以{}
在以下上下文中明确使用:
set app # set $1 to app
fruit=$1le # sets fruit to apple, but confusing
fruit=${1}le # sets fruit to apple, makes the intention clear
看到:
It's good to be not over-cautious
我不知道大多数人的想法。始终使用花括号,这样您就不会在需要时忘记它们,或者仅在需要时使用它们,以提高可读性。
遵循SierraX和Peter关于文本操作的建议,大括号{}
用于将变量传递给命令,例如:
假设您有一个sposi.txt文件,其中包含一部意大利著名小说的第一行:
> sposi="somewhere/myfolder/sposi.txt"
> cat $sposi
输出: quel ramo del lago di como che volge a mezzogiorno
现在创建两个变量:
# Search the 2nd word found in the file that "sposi" variable points to
> word=$(cat $sposi | cut -d " " -f 2)
# This variable will replace the word
> new_word="filone"
现在,将sposi.txt文件中的word变量内容替换为new_word之一
> sed -i "s/${word}/${new_word}/g" $sposi
> cat $sposi
输出: quel filone del lago di como che volge a mezzogiorno
“ ramo”一词已被替换。
weel-known novel
位。尽管如此,仍然支持。
{}
被称为支撑扩展。${}
被称为变量扩展。他们做不同的事情。除了没有扩展性,我会投票给你。