lincheney / fzf-tab-completion

Tab completion using fzf
GNU General Public License v3.0
632 stars 40 forks source link

"fgrep: warning: fgrep is obsolescent; using grep -F" message during completion #52

Closed RayZ0rr closed 1 year ago

RayZ0rr commented 1 year ago
~$ cat /usr/bin/fgrep
#!/bin/sh
cmd=${0##*/}
echo "$cmd: warning: $cmd is obsolescent; using grep -F" >&2
exec grep -F "$@"

OS Details

Arch Linux

Extra Details

grep --version
grep (GNU grep) 3.8
Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and others; see
<https://git.sv.gnu.org/cgit/grep.git/tree/AUTHORS>.
RayZ0rr commented 1 year ago

Just had to update as it was already fixed in #51 (705120a)