bash – shell – 将变量放在ALPHABETICAL循环范围内
发布时间:2020-12-15 21:35:14 所属栏目:安全 来源:网络整理
导读:有没有办法将变量放在ALPHABETICAL循环范围内? 这不起作用. read -p "Where I should start?" start #there will be entered one small letterfor aaa in {$start..z}; do #how put variable $start in range?...done 谢谢你的答复. 解决方法 使用eval扩展
有没有办法将变量放在ALPHABETICAL循环范围内?
这不起作用. read -p "Where I should start?" start #there will be entered one small letter for aaa in {$start..z}; do #how put variable $start in range? ... done 谢谢你的答复. 解决方法
使用eval扩展变量:
$s=t $eval echo {$s..z} t u v w x y z 你的例子变成了: read -p "Where I should start?" start #there will be entered one small letter for aaa in $(eval echo {$start..z}); do echo $aaa done 由于您有eval的用户输入,您可能希望首先将start的值检查为单个小写字符: read -p "Where I should start?" start #there will be entered one small letter if [[ $start =~ ^[a-y]$]]; then for aaa in $(eval echo {$start..z}); do echo $aaa done else echo "Need to use a letter 'a-y'" fi 您可以阅读有关Bash大括号扩展here的更多信息 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |