Skip to content
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

edited the grep section #359

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion shell_tools_101.rst
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,9 @@ Characters Meaning
Note that there's almost always more than one way to express a particular pattern.
When you're developing a regular expression, it can be helpful to test it on simplified input to see what it catches.
To test a regex for various spellings of opsschool, you might put a variety of spellings in a file and then grep it to see which regex catches which spellings.

Lastly, there is a big difference between a plain ``grep`` call and a ``grep -E`` call (Basic RE vs. Extended RE). In BRE, any of these characters need a preceding backslash in order for them to take effect: {}, +, ?, |
If not preceded by a backslash they are treated as normal characters.
E.g. ``grep "ops \?school"`` is equivalent to ``grep -E "ops ?school"``
.. code-block:: console

user@opsschool ~$ cat ops.txt
Expand Down