Using grep within a while loop


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Using grep within a while loop
# 1  
Old 04-23-2011
Using grep within a while loop

Hi all,

I have the below script to get input but i cannot get grep to work.

input1.txt
AAAAAAAAG

input2.txt
>gi|184009.1| LEAFY-like [Malus x domestica]|AAAAAAAAGSGGGDHLPY

However, when i use grep -f input1.txt input2.txt
i cannot get any output matches (note that the match is underlined).
Is it because of the "|" character in input2.txt? if so, how can i get it to grep the line?

Thanks

Y
# 2  
Old 04-23-2011
Hi.

0. welcome to the forum.

1. what system are you using-- AIX, Solaris, Linux ...?

2. how were the files created?

3. You mentioned "while" in the title, but you omitted it in the description.

4. please use CODE and /CODE enclosed in "[ ]" around data and scripts so that viewing is easy.

5. the grep as you described worked correctly for me.

Best wishes ... cheers, drl
# 3  
Old 04-23-2011
Hi,
the code was
Code:
#!/bin/sh

#echo File grep pattern \: $1
#echo  File search file \: $2
#echo File out \: $3

pwd=`pwd`
echo  current working directory $pwd

while read i 
do
  x=`echo $i | sed "s/\n//g"`
  echo $x
  `grep "$x" "$pwd/$2"` >> "$pwd/$3"
  echo =================================
done < "$pwd/$1"

i created the file in ubuntu (guest in virtualbox running on vista x64)

thanks in advance

Last edited by Scott; 04-23-2011 at 07:03 PM.. Reason: Please use code tags
# 4  
Old 04-23-2011
Hi.

So where does
Code:
grep -f input1.txt input2.txt

fit into this?

cheers, drl

To use CODE tags, select the text with the mouse, then click the button that looks like a hand beneath a rectangle just above the editing box.
# 5  
Old 04-23-2011
Code:
`grep "$x" "$pwd/$2"` >> "$pwd/$3"

should be
Code:
grep "$x" "$pwd/$2" >> "$pwd/$3"

regards,
Ahamed
# 6  
Old 04-23-2011
Quote:
Originally Posted by drl
Hi.

So where does
Code:
grep -f input1.txt input2.txt

fit into this?

cheers, drl

To use CODE tags, select the text with the mouse, then click the button that looks like a hand beneath a rectangle just above the editing box.
I tried to replace the code with
grep -f input1.txt input2.txt but it just do not work on my ubuntu
any idea?

thanks

Y

---------- Post updated at 12:23 PM ---------- Previous update was at 12:22 PM ----------

Quote:
Originally Posted by ahamed101
Code:
`grep "$x" "$pwd/$2"` >> "$pwd/$3"

should be
Code:
grep "$x" "$pwd/$2" >> "$pwd/$3"

regards,
Ahamed
Hi Ahamed,

it still do not work
is it a ubuntu problem?

thanks
Y
# 7  
Old 04-23-2011
Hi.

Responses like:
Quote:
... but it just do not work on my ubuntu ...
are not useful because they do not tell us anything. You need to be specific.

Please post the exact error messages -- copy / paste work well for this ... cheers, drl
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ps ax with grep in loop

Hello, I have built the following script to check if processes supplied by the argument are running or not. #!/bin/bash PROCLIST=$1 PROCESS="0" ERROR_PROCS="" IFS='+' read -ra ADDR <<< "$PROCLIST" for PROC in "${ADDR}"; do if ; then PROCESS=1 ... (9 Replies)
Discussion started by: nms
9 Replies

2. UNIX for Beginners Questions & Answers

Grep command in a loop

Hello - I am running a script that is outputting to a log. Let call it output.log I would like to monitor that log until the line "Build Successful" is found. I think I would need to use the grep command. How would I do that in a loop? Thanks Marty (1 Reply)
Discussion started by: MSpeare
1 Replies

3. Homework & Coursework Questions

GREP loop

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I need to search through the users home directories for keywords, display them. The code listed below will show... (7 Replies)
Discussion started by: jcllns1
7 Replies

4. Red Hat

using grep in a while loop

Hello everybody, I have been searching it, but it seems I am unable to find the correct information, that s why I am asking you guys, hoping somebody get an idea. Here is my problem : I want a script to loop until a string is identified in a log file. Here is the script : #!/bin/sh... (5 Replies)
Discussion started by: guyiom
5 Replies

5. Shell Programming and Scripting

Help on grep in a do while loop

So this is what I'm trying to do: I have a file called registry.txt which has a list of registry entries I want to search for. I have another file called inctrl.txt on which I want to perform the search on. Here's the example contents of registry.txt SOFTWARE\Microsoft\Security... (3 Replies)
Discussion started by: r4v3n
3 Replies

6. UNIX for Dummies Questions & Answers

grep sed and a loop

:wall: I have a requirement to search a log file that never rotates for certain values. If I find them I pipe them to a another file. To log file is constanyl being appened with new lines and never rotating Easy so far. The problem is I dont want to pipe out matches already seen before. ... (3 Replies)
Discussion started by: gunnahafta
3 Replies

7. Shell Programming and Scripting

Help with grep inside an if loop

Hello All, I have been reading posts on here for a while, but this is my first post. I have a document in which many sentences appear, and I am piping it through an exterior script which will tag each word in the document with its part of speech (not part of my script, just background). The... (3 Replies)
Discussion started by: daf189
3 Replies

8. Shell Programming and Scripting

Grep commands in loop

Hi All, Reference to my previous post I need to compare all the lines in the file1 with file2 for this condition if file1 {$3,$5} ==file2 {$3,$5} then grep file2{$1}latest date. need output in file3 10/04/2008 09/04/2008 09/04/2008 08/04/2008 can anyone suggest me Thanks... (0 Replies)
Discussion started by: karthikn7974
0 Replies

9. UNIX for Dummies Questions & Answers

grep -v while loop

alist contain: a b c d e blist contain: a b c the code: #!/usr/bin/ksh cat blist | while read line do grep -V "$line" alist > data done (8 Replies)
Discussion started by: bobo
8 Replies

10. Shell Programming and Scripting

grep in a loop

Hi , I am trying a script which takes user input userid . I am stuck how to check whether that is a valid user id or not in the audit log files. My code is : cd $CCP_AUDIT cat * > /export/home/$USR/l***/files echo "UserId:\c" read UserId #Date Function echo "DATE : \c" read xxx I... (7 Replies)
Discussion started by: gundu
7 Replies
Login or Register to Ask a Question