如何将多行与一行连接起来

如何将多行与一行连接起来

我想这样做,但我不知道该怎么做:

file1:5000 个用户名

root
ali
reza 
jack
.
.
.

输出:5000 个用户名的电子邮件

[email protected]
[email protected]
[email protected]
[email protected]
.
.
.

答案1

要使用替换每行的末尾 ( $) :@lpic.orgsed

sed 's/$/@lpic.org/' file1

要将输出保存到新文件:

sed 's/$/@lpic.org/' file1 > filenew

相关内容