Here's a way that utilizes bash parameter expansion and its IFS special variable. $ System=('s1' 's2' 's3' 's4 4 4') $ ( IFS=$'\n'; echo "${System[*]}" ).
確定! 回上一頁