-
Notifications
You must be signed in to change notification settings - Fork 638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Egrep is obsolescent for some linux distributions. #3484
Comments
Other places i also found
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
Executing workflows and capturing the output (which is captured in
.command.log
) causes the warning:generated by the command
egrep
to be spammed into the captured log.Expected behavior and actual behavior
egrep
is not spammed in.command.log
and one can actually investigate the actual output.Steps to reproduce the problem
Occurs in any recent Linux-Distribution, where the comannd
egrep
prints the following each time it is called:egrep: warning: egrep is obsolescent; using grep -E
This can be e.g. reproduced with the current Arch-Linux-distribution.
Environment
Additional context
Hi all,
this is an issue i observed 1 or 2 months ago. This should be something very easy to fix. In new Linux-distributions a warning is printed if someone uses the
egrep
-command. This is probably caused by this line.Instead of using:
we should use:
The command
egrep
is historical and most probably only existent, so that older programs which rely on it can run without any modification. Since we only capture the output with it andegrep
itself usesgrep -E
i assume that it is safe to change this.The text was updated successfully, but these errors were encountered: