gpt4 book ai didi

linux - 如何将多个参数通过管道传递给 unix 命令?

转载 作者:IT王子 更新时间:2023-10-29 01:16:51 29 4
gpt4 key购买 nike

我找不到任何类似的问题,因此发布了这个问题。

假设我有一组提供输出的命令

产生输出的第一组

cat xyx.txt | awk '{.........}' | sed 's/.../' | cut -d....   

产生输出的第二组

cat abc.txt | awk '{.........}' | cut -d ... | sed 's/...../'

我希望将这些输出作为“加入”命令的 2 个参数。我知道我可以将这两个文件重定向到一个文件,然后使用 join 命令将这些文件作为参数。

基本上,整个事情可以在一行中完成吗......类似

[first set of commands] > join -1 1 -2 1 < [second set of commands] 

最佳答案

如果您使用的是 bash,它是许多 Linux 发行版中的默认 shell,则表达式:

join <([first set of commands]) <([second set of commands])

有效。

所以

join <(cat xyx.txt | awk '{.........}' | sed 's/.../' | cut -d....) <(cat abc.txt | awk '{.........}' | cut -d ... | sed 's/...../')

应该能做到。

基本示例

$ cat a
1 hello
2 bye
3 ciao
$ cat b
1 hello 123
2 bye 456
3 adios 789
$ cut -d' ' -f1,2 b | awk '{print $1, 2, $2}'
1 2 hello
2 2 bye
3 2 adios
$ join <(cut -d' ' -f1,2 b | awk '{print $1, 2, $2}') a
1 2 hello hello
2 2 bye bye
3 2 adios ciao

关于linux - 如何将多个参数通过管道传递给 unix 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17191437/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com