On Mon, Jan 26, 2015 at 03:28:02PM +0200, Henri Salo wrote:
> This was closed because of https://bugs.debian.org/504804#13
>
> """
> It is about the inconsistence between
>
> --file=<some_file>
> and
> --file <some_file>
>
> THE EQUAL "=" sign.
> """
>
> This is a different bug than "=~" case.
I don't see why it's different than the original bug report. It is an
inconsistency issue between:
% echo "a" > ~/tmp-pattern
% echo "hola" | LANG=C grep --file=/home/santiago/tmp-pattern
hola
% echo "hola" | LANG=C grep --file /home/santiago/tmp-pattern
hola
% echo "hola" | LANG=C grep --file ~/tmp-pattern
hola
% echo "hola" | LANG=C grep --file=~/tmp-pattern
grep: ~/tmp-pattern: No such file or directory
% echo "hola" | LANG=C grep --file=${HOME}/tmp-pattern
hola
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]