Tengo un archivo delimitado por tabulaciones como este: table_a "where id IN ($IDS)" table_b "where fk_id IN ($IDS)" table_c "where fk_id IN ($SOME_OTHER_IDS)" Y estoy tratando de escribir un guión como: IDS="1,2,3" SOME_OTHER_IDS="4,5,6" while read TABLE WHERECLAUSE do echo "$WHERECLAUSE"...
