bash 遍历字符串

#/bin/bash num="/home/abc/" for ((a=0; a < ${#num}; ++a)) do echo ${num:$a:1} done

备注: 同事问我这个问题,google了没有找到实用信息,解决后随手发上来。

你可能感兴趣的:(Google,bash)