标签: arrays linux bash shell associative-array
我的代码将我的字符串转换为数组,但我最终注意到我需要将其与$ 9作为键关联,其余字符串作为值
stringy=$(ls -l | awk '{print$3,$6,$7,$8,$9}') declare -a myarray=()
有可能使用类似的东西吗?
readarray -t myarray <<< "$stringy"
(是的解析ls并不完全明智;))