this post was submitted on 01 Oct 2024
23 points (100.0% liked)

Linux

47548 readers
493 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hi,

I would like to display the new lines of /var/log/messages that contain either IN_MyText or OUT_MyText (no matter where in the line)

I've tried

tail -fn 3 /var/log/messages | grep --color --line-buffered -e "(IN|OUT)_MyText"

But the output stay blank, when it should not...

Any ideas ?

top 5 comments
sorted by: hot top controversial new old
[–] thingsiplay@beehaw.org 10 points 3 days ago (1 children)

grep by default uses Basic Regular Expressions. This means the ( and ) lose their special meaning and are matched literally. Either use a backslash version \( to have a group, or use Extended Regular Expressions with -E "(IN|OUT)" . In man grep under REGULAR EXPRESSIONS are some differences noted.

[–] Gordon_F@lemmy.ml 4 points 3 days ago

Thank you ! @thingsiplay@beehaw.org 👍
-E solved it :)

[–] CosmicGiraffe@lemmy.world 4 points 3 days ago

It's marked solved, but since OP didn't post the solution:

-e uses basic regular expressions, where you need to escape the meta-characters ((|)) with a backslash. Alternatively, use extended regex with -E

$ echo a | grep -E "(a|b)"
a
$ echo a | grep -e "\(a\|b\)"
a
$ echo a | grep -e "(a|b)"
$ echo a | grep -E "\(a\|b\)"
[–] vk6flab@lemmy.radio 2 points 3 days ago (1 children)

Do you get output if you use that exact tail command without the grep pipe?

[–] Gordon_F@lemmy.ml 1 points 3 days ago