bash string to array code example
Example 1: split string and create array bash
my_array=($(echo $string | tr "," "\n"))
Example 2: string to array bash
IFS='$SEP' read -r -a ARRAY <<< "$STRING"
Example 3: split string and create array bash
IFS=', ' read -r -a array <<< "$string"