作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
如何使用 shell 单行代码和通用 GNU 工具将两个文件中的行连接起来,就像在笛卡尔积中一样?什么是最简洁、美观和“linux”的方式?
例如,如果我有两个文件:
$ cat file1
a
b
$ cat file2
c
d
e
结果应该是
a, c
a, d
a, e
b, c
b, d
b, e
最佳答案
这是执行此操作的 shell 脚本
while read a; do while read b; do echo "$a, $b"; done < file2; done < file1
虽然那会很慢。我想不出任何预编译逻辑来完成这个。提高速度的下一步是在 awk/perl 中执行上述操作。
awk 'NR==FNR { a[$0]; next } { for (i in a) print i",", $0 }' file1 file2
嗯,这个使用预编译逻辑的 hacky 解决方案怎么样?
paste -d, <(sed -n "$(yes 'p;' | head -n $(wc -l < file2))" file1) \
<(cat $(yes 'file2' | head -n $(wc -l < file1)))
关于shell - GNU/Linux 中两个文件(作为线集)的笛卡尔积,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1620946/
我是一名优秀的程序员,十分优秀!