GNU bug report logs - #33972
grep -vf <(<nothing>) filters all rows

Previous Next

Package: grep;

Reported by: luke <at> gavelfamily.com

Date: Fri, 4 Jan 2019 05:16:02 UTC

Severity: normal

Done: Paul Eggert <eggert <at> cs.ucla.edu>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: luke <at> gavelfamily.com
Subject: bug#33972: closed (grep -vf <(<nothing>) filters all rows)
Date: Thu, 02 Jan 2020 09:05:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#33972: grep -vf <(<nothing>) filters all rows

which was filed against the grep package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 33972 <at> debbugs.gnu.org.

-- 
33972: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33972
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Paul Eggert <eggert <at> cs.ucla.edu>
To: luke <at> gavelfamily.com
Cc: 33972-done <at> debbugs.gnu.org
Subject: grep -vf <(<nothing>) filters all rows
Date: Thu, 2 Jan 2020 01:04:21 -0800
> I have to pre-check for an empty set before passing it to grep:
> ...
> Workaround:

You're right that the empty pattern matches every line, since every line has an
empty string in it somewhere. This is considered to be a feature of grep, not a
bug. As you have a workaround I'm closing the bug report.

[Message part 3 (message/rfc822, inline)]
From: luke <at> gavelfamily.com
To: bug-grep <at> gnu.org
Subject: grep -vf <(<nothing>) filters all rows
Date: Fri, 4 Jan 2019 00:04:28 -0500
[Message part 4 (text/plain, inline)]


I have to pre-check for an empty set before passing it to grep:
�
SAVED_RECORDs=($(sqlite3 -list -separator '/' files.db "SELECT FileName FROM Files WHERE ModTime > '2018-12-31'")) #Returns an empty set
NEW_RECs=($(ls * | grep -vf <(echo ${SAVED_RECORDs[@]}
| tr ' ' '\n') #Returns an empty list because grep considers SAVED_RECORDs to be universal rather than null set
Workaround:


if [ ${#SAVED_RECORDs[@]} -gt 0 ]; then

� NEW_RECs=($(ls * | grep -vf <(echo ${SAVED_RECORDs[@]} | tr ' ' '\n') #Now returns the expected subtraction of SAVED_RECORDs from NEW_RECs

fi
[Message part 5 (text/html, inline)]

This bug report was last modified 5 years and 197 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.