grep issue (Solaris)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers grep issue (Solaris)
# 1  
Old 10-02-2012
grep issue (Solaris)

Can anyone explain this (i.e. why the 2nd grep does not find anything)?:

Code:
-bash-3.00$ cat tmp.log
sftp> chdir /home/test-dir
sftp> mget thosefiles*.txt
File "/home/test-dir/thosefiles*.txt" not found.

-bash-3.00$ grep "s*.txt" tmp.log
sftp> mget thosefiles*.txt
File "/home/test-dir/thosefiles*.txt" not found.

-bash-3.00$ grep "es*.txt" tmp.log
-bash-3.00$

Thanks in advance.

Dave

Last edited by DukeNuke2; 10-03-2012 at 03:13 AM..
# 2  
Old 10-02-2012
Because you're not matching what you wanna match. Smilie
Use grep "s\*\.txt" or grep "es\*\.txt".
--
Bye
# 3  
Old 10-02-2012
grep

Thanks, Lem. Yes, I was able to make it work by escaping the *. Just wondering in this particular case why the two greps do what they do.
# 4  
Old 10-02-2012
Without escaping, the expression "s*.txt" matches a string that begins with zero or more s, goes on with another char no matter what (matched by the period), then goes on with txt. So it matches '.txt', and not 's*.txt', in your file. It would match also 'atxt' or 'btxt'.

Without escaping, the expression "es*.txt" matches a string that begins with an e, goes on with zero or more s, goes on with another char no matter what (matched by the period), then goes on with txt. So it cannot match anything that contains '*.'

If your grep has the -o option, you can easily see it yourself what strings are really matched by your grep expressions.
--
Bye

Last edited by Lem; 10-02-2012 at 06:25 PM..
This User Gave Thanks to Lem For This Post:
# 5  
Old 10-02-2012
Thanks!

Thanks very much, Lem.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issue executing grep command on Solaris

more jdbc.xml <name>Fast_ds/DataSource</name> <property> <name>user</name> <value>COL_USER</value> </property>Command 1: grep -A1 '<name>user</name>' jdbc.xml|grep -v '<name>user</name>'|sed 's/\(<value>\|<\/value>\)//g'| sed -e 's/^*//'Output: Command 2: grep... (5 Replies)
Discussion started by: mohtashims
5 Replies

2. UNIX for Dummies Questions & Answers

Issue with Grep

Hi guys, Hope someone can help me with this - I'm sure it's fairly simple but it's driving me mad! (forgive the coding - still new on scripting - come from Windows) I have the following coding for checking whether I want to include a line in a file:- EXTRACT_Date=$(date --date="${PERIOD}"... (6 Replies)
Discussion started by: NickF
6 Replies

3. UNIX for Dummies Questions & Answers

Grep issue

HI, I have a command to check a license file. License_print. In that file you get the headlines and all different licenses. Now i want to have things extracted from it. so i do like following: license_print | grep -iw -e "user" -e "admin" But i donīt want all lines where user is... (11 Replies)
Discussion started by: Tzwaj
11 Replies

4. Shell Programming and Scripting

Grep issue

Hi Guys, I am new to shell scripting. Need help on grep command. I had a file called file.log which contain below statements. 12 Nov 2013 14:12:17,756 INFO security - Userid: raja, Saved File Instance, Name: , Registry: 23 Nov 2013 14:14:11,777 INFO security - Userid: raja, Saved... (7 Replies)
Discussion started by: Vinoth Kumar G
7 Replies

5. Shell Programming and Scripting

Issue in grep

i have following pattern in file s6:s2 s2:s4 s1:s2:s3:s4:s5:s6 s1 . . Now i want to find occurence of each record in file like s6:s2 occurs twice {once in first record and both occur in 3 record as well} so output should be s6:s2 2 s2:s4 2 s1:s2:s3:s4:s5:s6 :1 s1 : 2 ... (7 Replies)
Discussion started by: sharad.40216
7 Replies

6. Shell Programming and Scripting

Issue with grep

Hi there, I need to grep out 1 line of a changing file. Any help would be much appreciated. code: xterm -hold -e tail -f /var/lib/dhcp3/dhcpd.leases | grep client-hostname &>/dev/null & The trouble is it shows the contents of the entire lease file. I just want to show the line... (5 Replies)
Discussion started by: digitalviking
5 Replies

7. UNIX for Dummies Questions & Answers

Grep issue

more Hello.txt it was a sunny way and i was about to go home. I need to grep and redirect to a new file all the text between 'sunny' and 'go' string above. Note: There may be multiple lines in between the string i need to grep between. If there are multiple 'go' strings it should grep till... (9 Replies)
Discussion started by: mohtashims
9 Replies

8. Shell Programming and Scripting

grep issue

The below command is not working stackmem="$(pmap $1 | grep -i '' | awk '{print $2}'| tr -d ' K')" I need to grep strictly for ----> Regards, Mohtashim (2 Replies)
Discussion started by: mohtashims
2 Replies

9. UNIX for Dummies Questions & Answers

Issue with grep

I have a file that has the following: 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 591066 100.0 ... (5 Replies)
Discussion started by: Pablo_beezo
5 Replies

10. UNIX for Dummies Questions & Answers

issue with grep

using grep, i have a file emp.lst, and i want all those records where "S" or "s" (capital or small) is not there i used this grep emp.lst when i use grep emp.lst i am getting rows with S..but why negate (^) is not working? (3 Replies)
Discussion started by: soujanya_srk
3 Replies
Login or Register to Ask a Question