I have a file which contains values like:
CA, PA, NY
ND, MO, MI
I need to process these values one by one. The flowchart will be as follows:
Enter loop -> Process CA; Process PA; Process NY -> Other commands -> Process ND; Process MO; Process MI -> End;
Is this possible using shell scripting?