In this SO question there is something that I cannot explain:
grep "\'" input_file
matches all lines in the given file. Does \' have a special meaning for grep?
|
In this SO question there is something that I cannot explain:
matches all lines in the given file. Does |
|||
|
|
|
grep regex GNU extension: ‘\'’ matches the end of the whole input |
|||
|
|
|
I did not know this feature of the regular expressions. But it's listed at regular-expressions.info as the end of the string anchor. It does not exist in all regex implementations only in GNU Basic and Extended Regular Expressions, see this compatibility chart for more info. |
|||
|
|
|
That is a really strange beaviour of
Update 1 As it is stated in http://www.gnu.org/software/findutils/manual/html_node/find_html/grep-regular-expression-syntax.html (thanks to Richard Sitze for the link) it really has the same meaning as
You can specify Another important remark. The manual says:
But strictly speaking that's not truth because
Exactly how |
|||||||||||||
|
|
\ is an escape character. This mean the the ' should considered as text to search for, and not as a control character. |
|||