Linux如何将多行合并为1行

# 分割符为, file是文件
paste -d, -s file
# 使用管道,分割符为空格
cat file | paste -d " " -s -

如何在Linux中将文件或者stdin的多行合并为1行,如上所示。

 

Leave a Reply

Your email address will not be published. Required fields are marked *