除了使用正則表達式刪除重複的單詞,我該如何複製單詞?我的情況:我有一個需要轉向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