Number of words in line, while loop, search and grep


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Number of words in line, while loop, search and grep
# 15  
Old 09-25-2018
Dear Rudic,
Many thanks but it gives in reverse order. Maybe there could be another option to list in reverse with one liner.

Expected order:
Code:
Eliot
Borges
Aragon

Your output:
Code:
Aragon
Borges
Eliot


Thanks for You All

Kind regards
Boris
# 16  
Old 09-25-2018
It's the order of your file2. Howsoever, try
Code:
grep -B1 -ffile1 file2 | tac
T S Eliot
+440011223344
J L Borges
+330022110033
--
L Aragon
+2828288889999

This User Gave Thanks to RudiC For This Post:
# 17  
Old 09-25-2018
Quote:
Originally Posted by RudiC
It's the order of your file2. Howsoever, try
Code:
grep -B1 -ffile1 file2 | tac
T S Eliot
+440011223344
J L Borges
+330022110033
--
L Aragon
+2828288889999

Thanks Rudic,
tac and cat gives different order. Interesting command



Many thanks
Boris
# 18  
Old 09-26-2018
Getting no output just means that your pattern doesn't match the content of any line in fileB, or that count is greater than 6. You did not write how you set the variables COL1, COL2 etc. The easiest way to do this is to turn on tracing using
Code:
set -x

. My guess is that fileB simply doesn't have any line matching the pattern.

Another point - which is just a matter of style: You don't need deeply nested if here. instead of

Code:
if CONDITION1; then
  foo
else
  if CONDITION2; then
    bar
  fi
fi

it is much more readable to write

Code:
if CONDITION1; then
  foo
elif CONDITION2; then
  bar
fi


Last edited by rovf; 09-26-2018 at 03:45 AM.. Reason: fix typo
This User Gave Thanks to rovf For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search string or words in logs without using Grep

I'm in need of some kind of script that will search for a string in each logfile in a directory but we don't want to use GREP. GREP seems to use up to much of our memory causing the server to use up a lot of swap space. Our log files are bigger than 500M on a daily basis. We lately started... (8 Replies)
Discussion started by: senormarquez
8 Replies

2. Shell Programming and Scripting

Search words in multiple file line by line

Hi All I have to search servers name say like 1000+ "unique names" line by line in child.txt files in another file that is a master file where all server present say "master.txt",if child.txt's server name matches with master files then it print yes else no with server name. (4 Replies)
Discussion started by: netdbaind
4 Replies

3. Shell Programming and Scripting

Search string within a file and list common words from the line having the search string

Hi, Need your help for this scripting issue I have. I am not really good at this, so seeking your help. I have a file looking similar to this: Hello, i am human and name=ABCD. How are you? Hello, i am human and name=PQRS. I am good. Hello, i am human and name=ABCD. Good bye. Hello, i... (12 Replies)
Discussion started by: royzlife
12 Replies

4. Shell Programming and Scripting

Search words in a line and print next 15 lines.

I have a text file ( basically a log file) and i have 2 words (alpha, beta), Now i want to search these two words in one line and then print next 15 lines in a temp file. there would be many lines with alpha and beta But I need only last occurrence with "alpha" and "beta" and next 15 lines. ... (4 Replies)
Discussion started by: kashif.live
4 Replies

5. Shell Programming and Scripting

print number of words in each line

Hi, Please suggest a way to print number of words in the end of each line. <input file> red aunt house blue sky bat and ball game <output file> red aunt house 3 blue sky 2 bat and ball game 4 Thanks! (2 Replies)
Discussion started by: mira
2 Replies

6. UNIX for Dummies Questions & Answers

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

I have a file that has multiple lines separated by an asterisk as a delimiter: FILE.txt A*123*BCD*456*TOM A*789*EFG*947*CHRIS A*840*BCD*456*TOM I would like to search multiple files for the strings 'BCD' AND 'TOM' and return the number of lines, per file, that match these two reg... (2 Replies)
Discussion started by: doza22
2 Replies

7. UNIX for Dummies Questions & Answers

search multiple words using grep

Hi frnds i want to desplay file names that should be word1 and word2 ex : i have 10 *.log files 5 files having word1 and word2 5 files having only word1, i have used below command egrep -l 'word1|word2' *.log its giving all 10 files, but i want to display only 5... (20 Replies)
Discussion started by: pb18798
20 Replies

8. Shell Programming and Scripting

how to get line number of different words if exists in same line

I have some txt files. I have to create another text file which contains the portion starting from the format "Date Sex Address" to the end of the file. While using grep -n on Date it also gives me the previous line containg Date. and also Date may be DATE in some files. My file is like this... (10 Replies)
Discussion started by: Amiya Rath
10 Replies

9. UNIX for Dummies Questions & Answers

grep with find to search for matchiing words

Hi all, Please help me in the following dbt i want to know the different files in the current and the sub directory which have some search key in that . for example i want to know all filenames followed by the word 'unix' in all files. the file name and the matching word have... (1 Reply)
Discussion started by: akhil313
1 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