如何在POSIX shell脚本中迭代字符串的字符?

符合POSIX的 shell应提供这样的机制来迭代字符串集合:

for x in $(seq 1 5); do
    echo $x
done

但是,如何迭代单词的每个字符?

解决方法

这有点迂回,但我认为这适用于任何符合posix标准的shell.我已经尝试过破折号,但是我没有繁忙的盒子来测试.

var='ab * cd'

tmp="$var"    # The loop will consume the variable,so make a temp copy first
while [ -n "$tmp" ]; do
    rest="${tmp#?}"    # All but the first character of the string
    first="${tmp%"$rest"}"    # Remove $rest,and you're left with the first character
    echo "$first"
    tmp="$rest"
done

输出

a
b

*

c
d

请注意,不需要在赋值右侧的双引号;我更喜欢在所有扩展中使用双引号,而不是试图跟踪它们离开它们的安全位置.另一方面,[-n“$tmp”]中的双引号是绝对必要的,如果字符串包含“*”,则需要first =“${tmp%”$rest“}”中的内部双引号”.

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...