Search for a string with different cases


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Search for a string with different cases
# 1  
Old 12-21-2009
Search for a string with different cases

Hi Guys,

I am using the following command in a script.

Code:
cat $sql_file_path"/"${sql_file_list[$i]} | grep "ABCDE"

but it returns only exactly matching lines (ABCDE)

how can i modify this single line so it will return if it finds a matching string with any case.

eg: Abcde, abCDe, abcdeE, ...

Thanks

Last edited by Yogesh Sawant; 12-28-2009 at 10:38 AM.. Reason: added code tags
# 2  
Old 12-21-2009
Code:
grep -i 'ABCDE' somefile

if your version of grep supports -i.
# 3  
Old 12-21-2009
Thanks jim. It worked. Smilie

---------- Post updated at 07:03 AM ---------- Previous update was at 06:45 AM ----------

One more question. how can i search for this in a particular line in the file. for an instance if i wanted to search in the third line? or maybe in first five lines?

Thanks
# 4  
Old 12-21-2009
search in the third line:
Code:
sed -n '3,3 {/text_to_search/I p}' filename

search in first five lines:
Code:
sed -n '1,5 {/text_to_search/I p}' filename

# 5  
Old 12-21-2009
Hi Yogesh. it works fine. Thanks. but it doesn't return any error code if it was not found. for an instance if i used grep it would return "1" if the text was not found. is there any way we can get an error code for this if not found? thanks

---------- Post updated at 08:14 AM ---------- Previous update was at 08:07 AM ----------

Got over this by combining grep

sed -n '3,3 {/text_to_search/I p}' filename | grep -i "text_to_search"

Thanks guys Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to use a grep search to search for a specific string within multiple directories?

Lets say I have a massive directory which is filled with other directories all filled with different c++ scripts and I want a listing of all the scripts that contain the string: "this string". Is there a way to use a grep search for that? I tried: grep -lr "this string" * but I do not... (3 Replies)
Discussion started by: Circuits
3 Replies

2. 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

3. Shell Programming and Scripting

How to split string in someinteresting cases?

I have a variable var=safe_alloc_TBA_details_TXXXXXX_YYYYMMDDhhmmss.csv I want to get a part safe_alloc_TBA_details_T If I do : PR=`echo "$var" | awk -F'_' '{for (i=1; i<NF; i++) printf("%s_", $i)}'` Then echo "$PR = safe_alloc_TBA_details_" How can I cut the string so that get it... (3 Replies)
Discussion started by: digioleg54
3 Replies

4. Shell Programming and Scripting

Search string within a file and list common words from the line having the search string

Hi, Need your help for this scripting issue I have. I am not really good at this, so seeking your help. I have a file looking similar to this: Hello, i am human and name=ABCD. How are you? Hello, i am human and name=PQRS. I am good. Hello, i am human and name=ABCD. Good bye. Hello, i... (12 Replies)
Discussion started by: royzlife
12 Replies

5. Shell Programming and Scripting

Search a string in a text file and add another string at the end of line

Dear All I am having a text file which is having more than 200 lines. EX: 001010122 12000 BIB 12000 11200 1200003 001010122 2000 AND 12000 11200 1200003 001010122 12000 KVB 12000 11200 1200003 In the above file i want to search for string KVB... (5 Replies)
Discussion started by: suryanarayana
5 Replies

6. Shell Programming and Scripting

Search a string in a text file and add another string at the particular position of a line

I am having a text file which is having more than 200 lines. EX: 001010122 12000 BIB 12000 11200 1200003 001010122 2000 AND 12000 11200 1200003 001010122 12000 KVB 12000 11200 1200003 In the above file i want to search for string KVB and add/replace... (1 Reply)
Discussion started by: suryanarayana
1 Replies

7. Shell Programming and Scripting

Search one string and then search another string in the next line

I am unable to use grep comman to Print only EmpPosition and if the EmpID next line. So output should be both EmpPosition and EmpID and also EmpPosition and EmpID data should match. Sample Data EmpPosition "New" EmpID "New" - - EmpPosition "New" ... (4 Replies)
Discussion started by: onesuri
4 Replies

8. Shell Programming and Scripting

Search several string and convert into a single line for each search string using awk command AIX?.

I need to search the file using strings "Request Type" , " Request Method" , "Response Type" and by using result set find the xml tags and convert into a single line?. below are the scenarios. Cat test Nov 10, 2012 5:17:53 AM INFO: Request Type Line 1.... (5 Replies)
Discussion started by: laknar
5 Replies

9. Shell Programming and Scripting

search string in a file and retrieve 10 lines including string line

Hi Guys, I am trying to write a perl script to search a string "Name" in the file "FILE" and also want to create a new file and push the searched string Name line along with 10 lines following the same. can anyone of you please let me know how to go about it ? (8 Replies)
Discussion started by: sukrish
8 Replies

10. Shell Programming and Scripting

Perl: Search for string on line then search and replace text

Hi All, I have a file that I need to be able to find a pattern match on a line, search that line for a text pattern, and replace that text. An example of 4 lines in my file is: 1. MatchText_randomNumberOfText moreData ReplaceMe moreData 2. MatchText_randomNumberOfText moreData moreData... (4 Replies)
Discussion started by: Crypto
4 Replies
Login or Register to Ask a Question