I have this string stored in a variable:
IN=\"bla@some.com;john@home.com\"
Now I would like to split the strings by ; delimite
;
echo "bla@some.com;john@home.com" | sed -e 's/;/\n/g' bla@some.com john@home.com