如何将多行输出连接到一行?

问题描述 投票:0回答:12

如果我运行命令

cat file | grep pattern
,我会得到很多行输出。如何将所有行连接成一行,有效地将每个
"\n"
替换为
"\" "
(以
"
结尾,后跟空格)?

cat file | grep pattern | xargs sed s/\n/ /g
不适合我。

linux bash sed grep tr
12个回答
385
投票

使用

tr '\n' ' '
将所有换行符转换为空格:

$ grep pattern file | tr '\n' ' '

注意:

grep
读取文件,
cat
连接文件。不要
cat file | grep

编辑:

tr
只能处理单个字符翻译。您可以使用
awk
更改输出记录分隔符,例如:

$ grep pattern file | awk '{print}' ORS='" '

这将会改变:

one
two 
three

至:

one" two" three" 

124
投票

在 bash

echo
不带引号时删除回车符、制表符和多个空格

echo $(cat file)

120
投票

通过管道将输出连接到

xargs
会将每行输出连接到带有空格的单行:

grep pattern file | xargs

或任何命令,例如。

ls | xargs
xargs
输出的默认限制为 ~4096 个字符,但可以通过例如增加。
xargs -s 8192


25
投票

这可能就是你想要的

cat file | grep pattern | paste -sd' '

至于你的编辑,我不确定这意味着什么,也许是这个?

cat file | grep pattern | paste -sd'~' | sed -e 's/~/" "/g'

(假设

~
不会出现在
file
中)


18
投票

这是一个生成用逗号分隔的输出的示例。您可以将逗号替换为您需要的任何分隔符。

cat <<EOD | xargs | sed 's/ /,/g'
> 1
> 2
> 3
> 4
> 5
> EOD

产生:

1,2,3,4,5

9
投票

我知道解决这个问题的最快和最简单的方法:

当我们想要 替换换行符

\n
用空格:

xargs < file

xargs
对每行的字符数和所有字符的总数有自己的限制,但我们可以增加它们。可以通过运行以下命令找到详细信息:
xargs --show-limits
,当然也可以在手册中找到:
man xargs

当我们想要 用另一个恰好一个字符替换一个字符时 :

tr '\n' ' ' < file

当我们想要用多个字符替换一个字符时

tr '\n' '~' < file | sed s/~/many_characters/g

首先,我们将换行符

\n
替换为波形符
~
(或选择文本中不存在的另一个唯一字符),然后我们将波形符替换为任何其他字符 (
many_characters
),我们这样做每个波形符(标志
g
)。


8
投票

这是另一种使用

awk
的简单方法:

# cat > file.txt
a
b
c

# cat file.txt | awk '{ printf("%s ", $0) }'
a b c

此外,如果您的文件有列,这提供了一种仅连接某些列的简单方法:

# cat > cols.txt
a b c
d e f

# cat cols.txt | awk '{ printf("%s ", $2) }'
b e

7
投票

我喜欢

xargs
解决方案,但如果不折叠空间很重要,那么可以这样做:

sed ':b;N;$!bb;s/\n/ /g'

这将替换空格的换行符,而不像

tr '\n' ' '
那样替换最后一个行终止符。

这还允许您使用除空格之外的其他连接字符串,例如逗号等,这是

xargs
无法做到的:

$ seq 1 5 | sed ':b;N;$!bb;s/\n/,/g'
1,2,3,4,5

4
投票

这里是使用

ex
编辑器Vim的一部分)的方法:

  • J连接所有行并p打印到标准输出:

    $ ex +%j +%p -scq! file
    
  • J在所有行中就位(在文件中):

    $ ex +%j -scwq file
    

    注意:这将自行连接文件内的所有行!


1
投票

paste -sd'~'
给出错误。

这是我在 mac 上使用

bash

的效果
cat file | grep pattern | paste -d' ' -s -

来自

man paste
.

-d list     Use one or more of the provided characters to replace the newline characters instead of the default tab.  The characters
                 in list are used circularly, i.e., when list is exhausted the first character from list is reused.  This continues until
                 a line from the last input file (in default operation) or the last line in each file (using the -s option) is displayed,
                 at which time paste begins selecting characters from the beginning of list again.

                 The following special characters can also be used in list:

                 \n    newline character
                 \t    tab character
                 \\    backslash character
                 \0    Empty string (not a null character).

                 Any other character preceded by a backslash is equivalent to the character itself.

     -s          Concatenate all of the lines of each separate input file in command line order.  The newline character of every line
                 except the last line in each input file is replaced with the tab character, unless otherwise specified by the -d option.
                 If ‘-’ is specified for one or more of the input files, the standard input is used; standard input is read one line at a time,  

循环,对于每个“-”实例。


0
投票

可能最好的方法是使用“awk”工具,它将输出生成一行

$ awk ' /pattern/ {print}' ORS=' ' /path/to/file

它将用空格分隔符将所有行合并为一行


-1
投票

在 Red Hat Linux 上我只使用 echo :

echo $(cat /some/file/name)

这仅在一行中提供了文件的所有记录。

© www.soinside.com 2019 - 2024. All rights reserved.