Grep Three Words


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Grep Three Words
# 8  
Old 09-02-2005
grep -l CCC $(grep -l BBB $(grep -l AAA files*)) is not working for me. It says "Illegal variable name.". Does it depend on shell also like born, korn, C etc?
Anyway I am using C shell. Comments please!
# 9  
Old 09-05-2005
The $( ) syntax is used by ksh-based shells, including bash.
Csh Programming Considered Harmful
# 10  
Old 09-05-2005
If you only want to return lines that contain all three:
egrep '(AAA.*BBB.*CCC)' filename
# 11  
Old 09-05-2005
Quote:
Originally Posted by 98_1LE
If you only want to return lines that contain all three:
egrep '(AAA.*BBB.*CCC)' filename
echo 'CCCfooAAAbarFredBBBfoo' | egrep '(AAA.*BBB.*CCC)'
# 12  
Old 09-06-2005
Quote:
Originally Posted by Ygor
The $( ) syntax is used by ksh-based shells, including bash.
Csh Programming Considered Harmful

Thanks Ygor. I was under the impression that 'Csh is easy to learn' but unaware it has so many disads.
# 13  
Old 08-14-2008
Quote:
Originally Posted by adurga
wondering whether will not suffice?
grep AAA file* | grep BBB | grep CCC
Almost, but not quite. You need the -l option on the first two.

Code:
grep -l AAA file* | xargs grep -l BBB | xargs grep CCC

A pipeline is somewhat more robust than backticks, IMHO, but this is by and large the same concept as blowtorch's posting.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to grep the words with space between?

see I have a text like: 27-MAY 14:00 4 aaa 5.30 0.01 27-MAY 14:00 3 aaa 0.85 0.00 27-MAY 14:00 2 aaa 1.09 0.00 27-MAY 14:00 5 aaa 0.03 0.00 27-MAY 14:00... (3 Replies)
Discussion started by: netbanker
3 Replies

2. Shell Programming and Scripting

Grep two words with exact match

HI Input : Counters Counter Int Ints Counters Counters Ints Ints I want to grep Counter|Int Output : Counter (1 Reply)
Discussion started by: pareshkp
1 Replies

3. UNIX for Dummies Questions & Answers

Grep words with X doubles only

Hi! I'm trying to figure out how to find words with X number of doubles, only. I'm searching a dictionary, (one word per line). For instance, if you want to find words containing only one pair of double letters, you could do something like this: egrep '(.)\1' wordlist.txt |egrep -v '(.)\1.*(.)\2'... (3 Replies)
Discussion started by: sudon't
3 Replies

4. Shell Programming and Scripting

Grep multiple words with not null value

Hi, I want to grep a file if any one (GH, IJ, KL) is not null. If it is null i dont want to pull anything. cat file | awk '{print ($1)}' Parameters are : AB=123;CD=456;EF=6789; cat file | awk '{print ($2)}' GH=456;IJ=789;KL=1011 eg: Contents in file: Parameters are :... (10 Replies)
Discussion started by: Neethu
10 Replies

5. Shell Programming and Scripting

grep words from txt

Queue on node in domain description : type : local max message len : 104857600 max queue depth : 5000 queue depth max event : enabled persistent msgs : yes backout threshold : 0 msg delivery seq :... (4 Replies)
Discussion started by: Daniel Gate
4 Replies

6. UNIX for Dummies Questions & Answers

Eliminate Hyphenated Words in Grep

How do you negate a literal hyphen/dash in a regex? If it's the first character inside the brackets, then it is read literally. But if you stick a caret to the left of it, to negate it, then it seems it is no longer read literally. Or whatever, it doesn't work. Nor does escaping it seem to... (3 Replies)
Discussion started by: sudon't
3 Replies

7. Shell Programming and Scripting

grep for words in file

Hi Please can you help me on this: How to grep for multiple words in a file, BUT for every word found output it to a new line. regards FR (8 Replies)
Discussion started by: fretagi
8 Replies

8. Shell Programming and Scripting

grep words from output file

Hi, By using shell scripit i have save output in one file. I want to grep two words named CLUSTER and CLUSQMGR from that output file. How to grep that. output file would be having below words TYPE(QCLUSTER) ALTDATE(2010-05-17) CLUSTER(QS.CL.MFT1) ... (5 Replies)
Discussion started by: darling
5 Replies

9. Shell Programming and Scripting

find words with grep....

I have a .txt file which contains several lines of text. I need to write a script program using grep or any other unix tool so as to detect part of the text (words) between / / that begin with the symbol ~. For example if somewhere in the text appears a webpage address like... (8 Replies)
Discussion started by: chrisxgr
8 Replies

10. Shell Programming and Scripting

How to grep for two or more words in a line at the same time?

I want to search a heap of files but using an either OR or AND condition for two or more strings. How can I do this? i.e. file1 has the following file testfile primary and file2 has this ... file testfile2 secondary If I use this ... find . -type f -exec grep "testfile" {}... (2 Replies)
Discussion started by: ElCaito
2 Replies
Login or Register to Ask a Question