如何使用shell脚本将单词转换为字符? 作为一个示例用户来自"你是"
答案 0 :(得分:2)
$ echo user | sed 's/./& /g'
u s e r
答案 1 :(得分:1)
像这样的东西在bash 4中工作正常:
$ readarray -t arr < <(grep -o '.' <<<"user")
$ declare -p arr #Just prints the array
declare -a arr=([0]="u" [1]="s" [2]="e" [3]="r")
$ echo "${arr[2]}"
e