如何将多行输出连接成一行?
- 2024-10-25 08:42:00
- admin 原创
- 96
问题描述:
如果我运行命令cat file | grep pattern
,我会得到多行输出。如何将所有行连接成一行,有效地用(以空格结尾)替换`"
"每
"" "行
"`?
`cat file | grep pattern | xargs sed s/
/ /g`
对我来说不起作用。
解决方案 1:
用来`tr '
' ' '`将所有换行符转换为空格:
$ grep pattern file | tr '
' ' '
注意:grep
读取文件,cat
连接文件。不要cat file | grep
!
编辑:
tr
只能处理单字符翻译。您可以使用awk
以下方式更改输出记录分隔符:
$ grep pattern file | awk '{print}' ORS='" '
这将改变:
one
two
three
到:
one" two" three"
解决方案 2:
在没有引号的bash 中echo
删除回车符、制表符和多个空格
echo $(cat file)
解决方案 3:
通过管道输出xargs
将把每行输出用空格连接成一行:
grep pattern file | xargs
或者任何命令,例如。。输出ls | xargs
的默认限制xargs
是~4096 个字符,但可以使用例如来增加xargs -s 8192
。。
grep 参数
解决方案 4:
这可能是你想要的
cat file | grep pattern | paste -sd' '
至于您的编辑,我不确定它是什么意思,也许是这个?
cat file | grep pattern | paste -sd'~' | sed -e 's/~/" "/g'
(假设~
不会发生在file
)
解决方案 5:
这是一个以逗号分隔输出的示例。你可以用任何你需要的分隔符替换逗号。
cat <<EOD | xargs | sed 's/ /,/g'
> 1
> 2
> 3
> 4
> 5
> EOD
生成:
1,2,3,4,5
解决方案 6:
我知道的解决这个问题最快、最简单的方法是:
当我们想用空格替换换行符 时:`
`
xargs < file
xargs
每行字符数和所有字符数的总和都有自己的限制,但我们可以增加它们。可以通过运行此命令找到详细信息:xargs --show-limits
当然也可以在手册中找到:man xargs
当我们想用另一个字符替换一个字符时:
tr '
' ' ' < file
当我们想用多个字符替换一个字符时:
tr '
' '~' < file | sed s/~/many_characters/g
首先,我们`用波浪符号替换换行符
~(或选择文本中不存在的另一个唯一字符),然后用任何其他字符(
many_characters)替换波浪符号,并对每个波浪符号(标志
g`)执行此操作。
解决方案 7:
以下是另一种简单的方法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
解决方案 8:
我喜欢这个xargs
解决方案,但如果不折叠空间很重要,那么可以这样做:
sed ':b;N;$!bb;s/
/ /g'
这将用空格代替换行符,而不会像`tr '
' ' '`would 那样替换最后一个行终止符。
这还允许您使用空格以外的其他连接字符串,例如逗号等,这是xargs
无法做到的:
$ seq 1 5 | sed ':b;N;$!bb;s/
/,/g'
1,2,3,4,5
解决方案 9:
ex
以下是使用编辑器(Vim的一部分)的方法:
连接所有行并打印到标准输出:
$ ex +%j +%p -scq! file
将所有行就地合并(在文件中):
$ ex +%j -scwq file
注意:这将连接文件本身内的所有行!
解决方案 10:
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:
newline character
tab character
\\ backslash character
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,
对于每个“-”实例,循环进行。
解决方案 11:
可能最好的方法是使用 'awk' 工具,它将输出生成一行
$ awk ' /pattern/ {print}' ORS=' ' /path/to/file
它将用空格分隔符将所有行合并为一行
解决方案 12:
在 Red Hat Linux 上我只使用 echo:
回显 $(cat /some/file/name)
这样我就可以在一行中看到一个文件的所有记录。
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件