> On 28 Nov 2024, at 22:45, Stephen Morris <steve.morris...@gmail.com> wrote:
> 
> being /usr/bin/egrep and /usr/bin/fgrep because it has said they have been 
> replaced by a script, is that standard Fedora?

Did you check what was in the files and where they were installed from?

The scripts print a warning message then run grep.

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

At some point the scripts will be dropped.

It is by design.

Barry


-- 
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to