[root@test linshi]# cat txt
a
b
c
d
e
f
[root@test linshi]# paste -d" " -s - < txt
a b c d e f
[root@test linshi]# cat txt |paste -d " " -s
也能达到效果
[root@test linshi]# cat txt
a
b
c
d
e
f
[root@test linshi]# paste -d" " -s - < txt
a b c d e f
[root@test linshi]# cat txt |paste -d " " -s
也能达到效果