Answers for "grep regex"

11

whitespace regex

s is the regex character for whitespace. It matches spaces, new lines, carriage returns, and tabs.
Posted by: Guest on October-15-2020
0

grep excep

# grep anything inside any file

grep -R "yourWord" ./path
Posted by: Guest on January-19-2021

Browse Popular Code Answers by Language