9951 explained code solutions for 126 technologies


bashHow to split a string with a delimiter


string="line1;line2;line3"
for line in $(echo $string | tr ";" "\n"); do echo $line; donectrl + c
string="line1;line2;line3"

test string to split by ;

echo $string | tr ";" "\n"

changes ; to \n symbol in $string

echo $line

prints echo line in cycle, previously splitted by ;, replace with your code