Importance of \ [ ] + ? in grep


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Importance of \ [ ] + ? in grep
# 1  
Old 09-16-2009
Importance of \ [ ] + ? in grep

What is the significance of special characters used in grep command.
Like \ [ ] + ?

What is the meaning of the below command:

Code:
grep -o "0078\([0-9]\)\+" $i | sort | uniq

Can i replace + with ?

Thanks,
tinku

Last edited by Franklin52; 09-16-2009 at 08:49 AM.. Reason: Correcting code tags
# 2  
Old 09-16-2009
\( \) is used to remember the pattern so that you can recall it later
"+" means one or more matched pattern
"?" means one or zero matched pattern
So you probably can't replace + with ?

Take a look at this : Regular Expressions
# 3  
Old 09-16-2009
Thanks thanhdat.

Just want to know whether my understandin of the below expression is correct.

grep -o "0034\([0-9]\)\+" => This will fetch all numbers starting with 0034
grep -o "0034[0-9]\+" => This will fetch anything that follows 0034. Say for example: 003483744 0034abcd
But the first one picks only 0034, followed by numbers. Am I Right?

Thanks,
Nanda
# 4  
Old 09-16-2009
Did you test on your system, what did those commands return ?
In my test (with debian 5) it should be :
Code:
$cat test
1234
12qbc
1222 345345
12ABC!!

$egrep -o "12[0-9]+" test
1234
1222

And this command should be translated to : find all numbers starting with 12
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Understand the importance of -depth option in find command.

Hi All, Can you please help me in understanding the importance of -depth of find. I am trying to execute below code.find . -mtime +5 -name "*" -depth -exec ls -l {} \; But it is throwing below error.find: warning: you have specified the -depth option after a non-option argument -mtime,... (2 Replies)
Discussion started by: Girish19
2 Replies

2. Shell Programming and Scripting

Sort names in a list by order of importance

Hi, I have multiple list which is arranged by order of importance. I need to do sorting on these lists based on the last name of the user(initial), if user name does not have initial then first name is initial . Important thing is that the last name in the list is important. If there is two or... (1 Reply)
Discussion started by: pratapsingh
1 Replies

3. Shell Programming and Scripting

importance of /var/mail

Hi When an entry will be made to the file /var/mail/<user-id> . I have 100 scripts under a specific user id(dgircc) in cron .SO inrder to check the whether the script has sucessfully run or not and if not to generate an email if i mention the code like #!/bin/ksh -p 2 fsize=`ls -lrt... (0 Replies)
Discussion started by: mskalyani
0 Replies

4. UNIX for Dummies Questions & Answers

How to set HIGH importance to a mail sent through mailx or sendmail command

I have written a script for sending automated email, reporting the running status of a cron scheduled work. Now, the issue is, my Project Manager wants, the mail should be received with HIGH IMPORTANCE. How can I do that, kindly anybody explain. Thank you so much. (3 Replies)
Discussion started by: mitte_dino
3 Replies

5. IP Networking

Importance of LS length in DB exchange start packet (OSPF protocol)?

Is there any importance of LS length in DB exchange packet of OSPF protocol as its should be always be 20 bytes. Is this length to be ignored (2 Replies)
Discussion started by: cosmic_egg
2 Replies

6. Linux

cp first ~/bin what is ~ symbols importance in this.

What would be the importance of ~ in this command. cp first ~/bin Thanks from dumb (1 Reply)
Discussion started by: singh85
1 Replies

7. UNIX for Dummies Questions & Answers

importance of '/dev' directory

Can any one tell me what is the importance of '/dev' directory in unix. Is there any possibility to get 'root' by using the files stored in this directory. Beleive me this is not for any hacking purpose. just for learning. Hopes a detail reply. thak you (1 Reply)
Discussion started by: madhu
1 Replies
Login or Register to Ask a Question