除了使用正则表达式删除重复的单词,我该如何复制单词?我的情况:我有一个需要转向SQL查询的电子邮件列表。如何使用正则表达式添加重复的单词?
[email protected]
[email protected]
[email protected]
要:
mysql -e "select * from users where email='[email protected]" > /tmp/[email protected]
mysql -e "select * from users where email='[email protected]" > /tmp/[email protected]
mysql -e "select * from users where email='[email protected]" > /tmp/[email protected]
那么,如何复制在每一行的电子邮件?
注意:每个查询都会返回多个行,这就是为什么我要单独执行每个查询。
+1美味的Perl/sed .... – 2010-08-17 06:33:45
可以请你举个例子\ 1如何替换电子邮件地址? – 2010-08-17 06:36:29