A.#{$string}B.${#string}C.${$string}D.#{#string}
单项选择题在shell脚本中,good是已知变量,下面哪种方法不可以实现字符串的拼接赋值?()
A.txt="I am "$good"vegetable!"B.txt="I am ${good}vegetable!"C.txt=’I am ’$good’vegetable!’D.txt=’I am ${good}vegetable!’
单项选择题在shell脚本中,已知变量string=’creeper?awwwwman!’,那么echo ${string#*w}的结果是()。
A.wwwman!B.man!C.creeper?awwwD.creeper?a
单项选择题在shell脚本中,已知变量string=’creeper?awwwwman!’,那么echo ${string%w*}的结果是()。
单项选择题在shell脚本中,已知变量string=’creeper?awwwwman!’,那么echo ${string##*w}的结果是()。
单项选择题在shell脚本中,下面哪些方法可以只显示变量fenghuo里的值?()
A.echo fenghuoB.cat $fenghuoC.echo ${fenghuo}D.echo {$fenghuo}