You can do it using -v
(for --invert-match
) option of grep as:
grep -v "unwanted_word" file | grep XXXXXXXX
grep -v "unwanted_word" file
will filter the lines that have the unwanted_word
and grep XXXXXXXX
will list only lines with pattern XXXXXXXX
.
EDIT:
From your comment it looks like you want to list all lines without the unwanted_word
. In that case all you need is:
grep -v 'unwanted_word' file
Related Posts:
- grep –ignore-case –only
- Split string on whitespace in Python
- Grep and Python
- How to replace ” \ ” with ” \\ ” in java
- Regex how to match an optional character
- How can I remove punctuation from input text in Java?
- Using the star sign in grep
- How can I remove punctuation from input text in Java?
- Negative matching using grep (match lines that do not contain foo)
- Validating IPv4 addresses with regexp
- Regular expression – starting and ending with a character string
- Regex empty string or email
- OR condition in Regex
- Using or ‘|’ in regex [duplicate]
- What is a Context Free Grammar?
- Regex not operator
- What does \’.- mean in a Regular Expression
- Regex not operator
- How can I validate an email address using a regular expression?
- Regular expression to match a line that doesn’t contain a word
- Regex not operator
- Difference between \b and \B in regex
- Regex: ignore case sensitivity
- What does the regex \S mean in JavaScript?
- How can I validate an email address using a regular expression?
- Regex: ignore case sensitivity
- Python regex AttributeError: ‘NoneType’ object has no attribute ‘group’
- Regular Expression for alphanumeric and underscores
- What is the difference between the regular expressions [^\d\s] and [\D\S]
- Regular Expression for alphanumeric and underscores
- Regex AND operator
- python re.split() to split by spaces, commas, and periods, but not in cases like 1,000 or 1.50
- python re.split() to split by spaces, commas, and periods, but not in cases like 1,000 or 1.50
- Regex to test if string begins with http:// or https://
- Regular expression negative lookahead
- Regex how to match an optional character
- Regular Expression to match string starting with a specific word
- Regular Expressions: Is there an AND operator?
- Writing a very simple lexical analyser in C++
- Regular expression to match standard 10 digit phone number
- Regular Expression.how to add optional character at end of regex
- Regular Expression with wildcards to match any character
- What is a non-capturing group in regular expressions?
- How to find all occurrences of a substring?
- How to validate an email address in PHP
- What is a non-capturing group in regular expressions?
- Regular expression to match standard 10 digit phone number
- How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
- Python string.replace regular expression
- how to replace quotation marks with \”
- Remove all special characters, punctuation and spaces from string
- This can be done without regex:
- How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
- Python string.replace regular expression
- Symbol for any number of any characters in regex?
- Regex – Does not contain certain Characters
- A regular expression to exclude a word/string
- How to validate an email address in JavaScript
- Using Bash regex match (=~) where regex includes quotes (” characters)
- Searching for UUIDs in text with regex
- Regular expression to match a word or its prefix
- What does regular expression \\s*,\\s* do?
- Regular expression for exact match of a string
- Regex optional group
- Regex for string contains?
- Question marks in regular expressions
- Difference between \w and \b regular expression meta characters
- Regular Expression – Validate Gmail addresses
- Remove all special characters, punctuation and spaces from string
- Java; String replace (using regular expressions)?
- How can I output only captured groups with sed?
- How to negate specific word in regex?
- What is the grep equivalent in Python?
- javascript HTML from document.body.innerHTML
- Which regular expression operator means ‘Don’t’ match this character?
- Python re.split() vs split()
- How can I write a regex which matches non greedy?
- How can I match a string with a regex in Bash?
- Regex Explanation ^.*$ [duplicate]
- How to exclude a specific string constant?
- How to replace a whole line with sed?
- Regex match everything after question mark?
- How to validate phone number using PHP?
- Validate phone number with JavaScript
- Can a URL contain a semicolon and still be valid?
- How is \\n and \\\n interpreted by the expanded regular expression?
- Regex to match only uppercase “words” with some exceptions
- Regular Expression to reformat a US phone number in Javascript
- Regex to match only letters
- Regex optional capturing group?
- Finding the complement of a DFA?
- RegEx to find two or more consecutive chars
- RE error: illegal byte sequence on Mac OS X
- Regex to match an optional ‘+’ symbol followed by any number of digits
- Regex Match all characters between two strings
- Regular expression to match a word or its prefix
- How can I extract a number from a string in JavaScript?
- Regular expressions in C: examples?
- How to ignore whitespace in a regular expression subject string?
- Regular Expressions on Punctuation