Search for string and display those NOT found


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Search for string and display those NOT found
# 15  
Old 05-22-2007
Your problem comes from le END action, a variable is misspelled
Your program:
Code:
END {
   for (str in strings_found)
      if (string_found[str] == 0) print str;
}

instead
Code:
END {
   for (str in string_found)
      if (string_found[str] == 0) print str;
}

The initialization of the variable strings_count misses in my code, this can only affect the performances.
Code:
FNR==1 {
   strings_count=0;
   for (str in string_found) {
      if (string_found[str] == 0) {
         strings[str]++;
         strings_count++;
      }
   }
   if (strings_count == 0) exit;
}


Jean-Pierre.
# 16  
Old 05-22-2007
Jean-Pierre,
It works!!! Thank you so very much. Have a great day.

John
# 17  
Old 05-22-2007
Jean_Pierre,
I am finding that because of the size of the directory and it's sub-directories this is taking a very long time to run.

When I run a ksh script I can put a echo command in to display a variable so I know where the script is in it's run sequence. How can I do the same here? Maybe have it display which search string it is presently working on.

Thanks, John
# 18  
Old 05-22-2007
You can add the two printf statements in the program.
The informations are displayed on stderr.

Code:
#
# New data file.
# Build array with strings not yet found
#

FNR==1 {
   printf("File %s ...\n", FILENAME") | "cat >&2";
   strings_count = 0;
   for (str in string_found) {
      if (string_found[str] == 0) {
         strings[str]++;
         strings_count++;
      }
   }
   if (strings_count == 0) exit;
}

#
# Input data;
# Search data for strings not yet found
#

{
   for (str in strings) {
      if ($0 ~ str) {
         printf("  String found: %s\n", str) | "cat >&2";
         string_found[str]++;
         delete strings[str];
         if (--strings_count == 0) exit;
      }
   }
}

Jean-Pierre.
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 in multiple files and display column wise

I have 3 files. Each of those files have the same number of records, however certain records have different values. I would like to grep the field in ALL 3 files and display the output with only the differences in column wise and if possible line number File1 Name = Joe Age = 33... (3 Replies)
Discussion started by: sidnow
3 Replies

2. Shell Programming and Scripting

Bash to search file for string and lauch function if found

In the bash below I am searching the filevirus-scan.log for the Infected files: 0 line (in bold) and each line for OK. If both of these are true then the function execute is automatically called and processing starts. If both these conditions are not meet then the line in the file is sent to the... (2 Replies)
Discussion started by: cmccabe
2 Replies

3. UNIX for Beginners Questions & Answers

Search a string and display its location on the entire string and make a text file

I want to search a small string in a large string and find the locations of the string. For this I used grep "string" -ob <file name where the large string is stored>. Now this gives me the locations of that string. Now how do I store these locations in a text file. Please use CODE tags as... (7 Replies)
Discussion started by: ANKIT ROY
7 Replies

4. Shell Programming and Scripting

Search for a tag and display a message if not found.

Hi All, I am working with a XML file. Below is part for the file. <Emp:Profile> <Emp:Description>Admin</Emp:Description> <Emp:Id>12347</Emp:Id> </Emp:Profile> <Emp:Profile> ... (7 Replies)
Discussion started by: Girish19
7 Replies

5. Shell Programming and Scripting

bash: need to have egrep to return a text string if the search pattern has NOT been found

Hello all, after spending hours of searching the web I decided to create an account here. This is my first post and I hope one of the experts can help. I need to resolve a grep / sed / xargs / awk problem. My input file is just like this: ----------------------------------... (6 Replies)
Discussion started by: bash4ever
6 Replies

6. Shell Programming and Scripting

Print lines after the search string until blank line is found

All I want is to look for the pattern in the file...If I found it at # places... I want print lines after those pattern(line) until I find a blank line. Log EXAMPLE : MT:Exception caught The following Numbers were affected: 1234 2345 2346 Error java.lang.InternalError:... (3 Replies)
Discussion started by: prash184u
3 Replies

7. Shell Programming and Scripting

Search a String and display only word.

Hello Gurus, Apologies if this Q has been repeated but i was not able to find it :( I have an input file: ------------------------------- Replace DB.Employee as select column1 column2 from DB_T.Emp and DB.Test and DB.Dept and DB_T.Ter; ------------------------ (4 Replies)
Discussion started by: indrajit_u
4 Replies

8. UNIX for Advanced & Expert Users

Parsing String, Search then display rows

Get occurence of "open" considering duplicates(get the last open). Once you are pointing to the last open count 2 rows to get the correct data. Every begin and end statement, there is a "close" and "open". There can be many "close" and "open" within the begin and end statement but we are... (9 Replies)
Discussion started by: buddyme
9 Replies

9. Shell Programming and Scripting

Display only found string

Is there a way for grep to output only the found string and not the whole line? I have a ksh script which reads in a file and loops through every line looking up on a grep -f list. For it to only display only the string found i pass this to awk as a variable and loop through the list file using... (5 Replies)
Discussion started by: Cranie
5 Replies

10. Shell Programming and Scripting

Recursive Search and replace only when found string

Hello all ( again ) I will like to search and replace string in text file ok I can loop throw the files like : foreach f ( ` find . -name "*."`) .. but here I like to examine the file if in contain the desired string and so do the sed -e 's/blah/foo/g' thingy on it or there is better way... (1 Reply)
Discussion started by: umen
1 Replies
Login or Register to Ask a Question