Can't search ‘---c’ with -e #477
Replies: 1 comment
-
This problem was corrected, which had to do with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Search begin with "---" will match flag_config ,if i use '--' before '---c' , then i can't use -e.
ugrep -e -- '---c' will search text "--"
ugrep -- -e '---c' , it can't match -e
The reliable method is to use '' , like ugrep -e '---c' or ugrep --- -e '---c'
Is this the proper way
Beta Was this translation helpful? Give feedback.
All reactions