A.echo ${!str}B.echo ${#str}C.echo ${str[*]}D.echo ${str[@]}
单项选择题在shell脚本中,当脚本编写完成后可以通过shell命令的什么参数来调试脚本?()
A.-xvB.-XvC.-oD.-t
单项选择题Linux系统中,使用grep使用扩展正则表达式需要用()参数。
A.-EB.-eC.-OD.-o
单项选择题shell中,以下哪个命令能判断普通文件file是否存在?()
A.if exist fileB.test [-f file ]C.test [-z file ]D.read file
单项选择题在shell脚本中,已知变量string=’creeper?awwwwman!’,那么echo ${string:6:3}的结果是()。
A.r?aB.awwC.?awD.er?
单项选择题在shell脚本中,已知string= hasaki ,请问echo ${string:1:3}将输出什么内容?()
A.hasB.asaC.hhhD.aliakatong
单项选择题在shell脚本中,下面哪种方法可以获得字符串变量string的长度?()
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