We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Note that
cat access.log.1 | grep -Eo "^[0-9]+.[0-9]+.[0-9]+.[0-9]+" | while read ip; do res=cat access.log.2|grep -Eo $ip ; echo $res; done
cat access.log.2|grep -Eo $ip
Produce: 108.68.174.15 28.151.137.59 2.71.250.27 17.137.186.194
but it doesn't recognised valid. Probably because the lines are in different order, but the problem it doesn't require a given order.
The text was updated successfully, but these errors were encountered:
This is invalid.
Your solution is incorrect as it prints extra blank lines.
Sorry, something went wrong.
No branches or pull requests
Note that
cat access.log.1 | grep -Eo "^[0-9]+.[0-9]+.[0-9]+.[0-9]+" | while read ip; do res=
cat access.log.2|grep -Eo $ip
; echo $res; doneProduce:
108.68.174.15
28.151.137.59
2.71.250.27
17.137.186.194
but it doesn't recognised valid. Probably because the lines are in different order, but the problem it doesn't require a given order.
The text was updated successfully, but these errors were encountered: