Reading line from file which holds braces and comma
in ksh I have a input file that holds the following: $ cat input.txt A {111 222 111} B {333,444,333} C {555 666 555} $ When I Run the following command Im getting the following $ while read LINE > do > echo $LINE > done<input.txt A {111 222 111} B 333 444 333 C… Read More Reading line from file which holds braces and comma