STRINGLIST="a b c_d e,f" for ele in $STRINGLIST do echo $ele done
a b c_d e,f
SARY="a" SARY=$SARY" b" SARY=$SARY" c" echo $SARY
a b c