Help required in searching of pattern.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help required in searching of pattern.
# 1  
Old 02-01-2014
Help required in searching of pattern.

i m searching a zone file my domain name is abcd.com


my zone file looks like this.

Code:
abcd.com.       IN      SOA     ns1.abcd.com.      root.abcd.com. (
               

abcd.com.               400     IN      A       15.1.1.1

Then i am searching that abcd.com have if below ip address or not, if not then echo ip address is different. But problem is that i am not able to search the domain name with ip address because domain name is also having SOA record. abcd.com.zone is file name of zone file.

Code:
grep ^abcd.com. abcd.com.zone  | fgrep 15.1.1.10 | awk {'print $5'}

# 2  
Old 02-01-2014
Not sure what you want. Would this do the job:
Code:
grep -q "^abcd\.com.*15\.1\.1\.10" file && echo zone-IP found || echo ip address is different.

?
# 3  
Old 02-01-2014
Quote:
Originally Posted by RudiC
Not sure what you want. Would this do the job:
Code:
grep -q "^abcd\.com.*15\.1\.1\.10" file && echo zone-IP found || echo ip address is different.

?
yes it is working.



---------- Post updated at 03:06 PM ---------- Previous update was at 03:00 PM ----------

Is it possible i can use fgrep........
# 4  
Old 02-01-2014
I don't think so, as you need the regex .*. fgrep would look for fixed strings only.
# 5  
Old 02-01-2014
Note that the command:
Code:
grep -q "^abcd\.com.*15\.1\.1\.10" file && echo zone-IP found || echo ip address is different.

will also say that the IP was found for IP addresses 15.1.1.100 through 15.1.109 in addition to 15.1.1.10. Assuming there is no whitespace at the end of the line, you might want to try:
Code:
grep -q "^abcd\.com.*15\.1\.1\.10$" file && echo zone-IP found || echo ip address is different.

instead.
# 6  
Old 02-01-2014
Thanks Don.....

I need one more help, how to change the ip address of domain name. It only change to below domain not disturb sub-domain or any other thing.

current output

Code:
abcd.com.               400     IN      A       15.1.1.1

server.abcd.com      400      IN      A       151.100.151.100

Desired output

Code:
abcd.com.               400     IN      A       15.1.1.10

server.abcd.com      400      IN      A       151.100.151.200

# 7  
Old 02-01-2014
What have you tried?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Searching and printing only required pattern

Hi all, i am trying to count the number of logical processors from the below output: # print_manifest | grep "logical processors" 8 cores, 16 logical processors per socket 2 logical processors (2 per socket) i just want to have below output : 16 2 also... (11 Replies)
Discussion started by: omkar.jadhav
11 Replies

2. Shell Programming and Scripting

Searching for a pattern and extracting records related to that pattern

Hi there, Looking forward to your advice for the below: I have a file which contains 2 paragraphs related to a particular pattern. I have to search for those paragraphs from a log file and then print a particular line from those paragraphs. Sample: I have one file with the fixed... (3 Replies)
Discussion started by: danish0909
3 Replies

3. UNIX for Dummies Questions & Answers

searching pattern in VI

in my file i have somthing likre kpk_12 kpk_1 kpk_1.tcl kpk_3.tcl kpk kpk kpk i want search only kpk i am using this cmd /kpk ...results it is showing all . any cmd is ther other then this to search exactword in this example kpk it shoulsnot show kpk_* etc Thanks in Advance ... (2 Replies)
Discussion started by: prakumar
2 Replies

4. UNIX for Dummies Questions & Answers

Pattern searching

Hi, I need small help from you people. In a directory there are around 150 odd files and few them contain the word "TRACK" and few are not. How can I find out the the list of those files which doesn't contain the word "TRACK"? Thanks, Siba (4 Replies)
Discussion started by: siba.s.nayak
4 Replies

5. Shell Programming and Scripting

Find required files by pattern in xml files and the change the pattern on Linux

Hello, I need to find all *.xml files that matched by pattern on Linux. I need to have written the file name on the screen and then change the pattern in the file just was found. For instance. I can start the script with arguments for keyword and for value, i.e script.sh keyword... (1 Reply)
Discussion started by: yart
1 Replies

6. Shell Programming and Scripting

Searching using awk - Help required

Hi... I am working on script to search some records in a file based on certain fields and each record is a ASCII fixed size. I was using awk to search based on certain condition. But the length of the record is too much that awk is giving syntax error near unexpected token `(' Request... (5 Replies)
Discussion started by: ysrikanth
5 Replies

7. Shell Programming and Scripting

Searching a pattern in file and deleting th ewhole line containing the pattern

Hi All, Please can someone assist in the script I have made that searches a pattern in a file and delete the whole line containing the pattern. #!bin/sh # The pattern that user want to add to the files echo "Enter the pattern of the redirect" read value # check if the user has... (1 Reply)
Discussion started by: Shazin
1 Replies

8. Shell Programming and Scripting

searching for a pattern

can anybode tell me ? I want to search for a pattern present in a whole directory and subdirectories's files containg " crat" I tried grep -r "crat" */* ; is it right ? (3 Replies)
Discussion started by: pranabrana
3 Replies

9. Shell Programming and Scripting

Pattern searching pattern in c files

I have a problem in searching a specific pattern in c files. My requirement: I have to find all the division operator in all cfiles. The problem is, the multi line comments and single line comments will also have forward slash in it. Even after avoiding these comments also, if both... (6 Replies)
Discussion started by: murthybptl
6 Replies

10. Shell Programming and Scripting

Regarding Searching Pattern

Hi Guys, Can you help with the shell script: I would like to search a fixed width pattern from a file say for each line from a fixed position and lenght it has to return all rows from the file. Example: To search the third column for "def" it has to return 1 and 4th rows only ... (2 Replies)
Discussion started by: sbasetty
2 Replies
Login or Register to Ask a Question