Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6949201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:55:23+00:00 2026-05-27T13:55:23+00:00

I am reading some equipment configuration output and check if the configuration is correct,

  • 0

I am reading some equipment configuration output and check if the configuration is correct, according to the HW configuration. The template configurations are stored as files with all the params, and the lines contain regular expressions (basically just to account for variable number of spaces between “object”, “param” and “value” in the output, also some index variance)

First of all, I cannot use grep -f $template $output, since I have to process each line of the template separately. I have something like this running

while read line
  do
  attempt=`grep -E "$line" $file`
  # ...etc
  done < $template

Which works just fine if the template doesn’t contain regex.
Problem: grep interpretes the search option literally when these are read form file. I tested the regex themselves, they work fine from the command line.

With this background, the question is:

How to read regex from a file (line by line) and have grep not interprete them literally?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:55:24+00:00Added an answer on May 27, 2026 at 1:55 pm

    Using the following script:

    #!/usr/bin/env bash
    # multi-grep
    regexes="$1"
    file="$2"
    while IFS= read -r rx ; do
        result="$(grep -E "$rx" "$file")"
        grep -q -E "$rx" "$file" && printf 'Look ma, a match: %s!\n' "$result"
    done < "$regexes"
    

    And files with the following contents:

    $ cat regexes
    RbsLocalCell=S.C1.+eulMaxOwnUuLoad.+100
    
    $ cat data
    RbsLocalCell=S1C1 eulMaxOwnUuLoad 100
    

    I get this result:

    $ ./multi-grep regexes data
    Look ma, a match: RbsLocalCell=S1C1 eulMaxOwnUuLoad 100!
    

    This works for different spacing as well

    $ cat data
    RbsLocalCell=S1C1    eulMaxOwnUuLoad           100
    
    $ ./multi-grep regexes data
    Look ma, a match: RbsLocalCell=S1C1    eulMaxOwnUuLoad           100!
    

    Seems okay to me.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When reading some FreeBSD source code (See: radix.h lines 158-173), I found variable declarations
Reading some source code, I have found next traits definition: namespace dds { template
I'm reading some RAW code from here http://www.zfsnippets.com/snippets/view/id/17/output/raw/table-view-helper where the author is doing a
Reading some questions here on SO about conversion operators and constructors got me thinking
Reading some posts from Jimmy Boggard and wondering - how exactly is it possible
Reading some Verilog code, there seem to be two ways of defining arguments in
After reading some material on this subject I'm still not sure what the difference
When reading some documentation about assertions, I found: java -ea -dsa Enables assertions in
After reading some articles about XSS I have incorporated HTMLPurifier into my zend framework
I am reading some book and I have encountered a piece of code that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.