newfile 我还想(同时)将那些不匹配的行重定向到另一个文件。 我知道可以简单地做两次并在第二次尝-6ren">
gpt4 book ai didi

bash - grep 重定向不匹配

转载 作者:行者123 更新时间:2023-11-29 09:18:42 28 4
gpt4 key购买 nike

我正在为以某些模式开头的行做一个简单的grep:

grep -E "^AAA" myfile > newfile

我还想(同时)将那些不匹配的行重定向到另一个文件。
我知道可以简单地做两次并在第二次尝试中使用 -v ,但是文件(相对)很大,只读一次会节省一些非常宝贵的时间......

我正在考虑将不匹配重定向到 stderr,例如:

grep -E -magic_switch "^AAA" myfile > newfile 2> newfile.nonmatch

这个技巧是否可以通过 grep 实现,或者我应该直接编写代码?

(可能有额外的值(value) - 我正在用 bash 脚本编写代码)

最佳答案

这会起作用:

awk '/pattern/ {print; next} {print > "/dev/stderr"}' inputfile

awk -v matchfile=/path/to/file1 -v nomatchfile=/path/to/file2 '/pattern/ {print > matchfile; next} {print > nomatchfile}' inputfile

#!/usr/bin/awk -f
BEGIN {
pattern = ARGV[1]
matchfile = ARGV[2]
nomatchfile = ARGV[3]
for (i=1; i<=3; i++) delete ARGV[i]
}

$0 ~ pattern {
print > matchfile
next
}

{
print > nomatchfile
}

像这样调用最后一个:

./script.awk regex outputfile1 outputfile2 inputfile

关于bash - grep 重定向不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4807361/

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