shell技巧之多行改写成一行

文本内容:
$cat test.txt
001
002
003
004
005
006
0000999
需要格式化成:

001 002 003 004 005 006 0000999


方法一、最好的答案是waker老大提供的,就不解释了:

xargs < test.txt


语法: "命令 < 文件"     这是将文件作为命令输入
比如说:mail -s "test" [email protected] < aa   就是将文件aa作为信件的内容主题为test给收信人发去

xargs 可以读入 stdin 的资料,并且以空白字元或断行字元作为分辨,将 stdin 的资料分隔成为 arguments 

你可能感兴趣的:(shell技巧之多行改写成一行)