今天想运行一下非常简单的代码:test.sh #!/bin/bash str="Learn to Split a String in Bash Scripting" IFS=' ' # space is set as delimiter read -ra ADDR <<< "$str" # str is read into an array as tokens separated by IFS for i in "${ADDR[@]}"; do # access each element of