Estou executando um script 'bash for' para atualizar alguns registros no mysql, assim:
for i in 'cat yahoo.txt'; do mysql $DB --batch -fe "update users set email=concat(left(email, instr(email, '@')), 'yahoo.com') where email like '%@$i';" ;...
25.07.2012 / 09:27