我想这样做,但我不知道该怎么做:
file1:5000 个用户名
root
ali
reza
jack
.
.
.
输出:5000 个用户名的电子邮件
[email protected]
[email protected]
[email protected]
[email protected]
.
.
.
答案1
要使用替换每行的末尾 ( $
) :@lpic.org
sed
sed 's/$/@lpic.org/' file1
要将输出保存到新文件:
sed 's/$/@lpic.org/' file1 > filenew