Grep Usage


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Grep Usage
# 1  
Old 09-29-2008
Grep Usage

Hello,
I am trying to use grep to locate multiple uses of the same word in the same line. The word has to be 3+ char, upper or lower or both.

I tried this code
<code>
grep \([A-Za-z]{3,}\)*\1 i*
</code>

and i turned out zero results. Any ideas?

____________________________________________
Also this is another problem that i have no idea where to start.

We can use regular expression search and replace tools (such as that provided by emacs) as a powerful tool for reorganizing data in a file. If you look at the file attached to this topic, you will see that it has the format:
TIME NAME COMMENT
Use search and replace tools to transform this into the following format:
[TIME] ***NAME*** COMMENT
In addition, convert all text of the form *text* to _text_, making sure not to delete single * 's.



~Thank Everyone
~Rob

`http://algorithmics.bu.edu/twiki/pub....de_output.txt that is the link for the attachment
# 2  
Old 09-29-2008
In grep, you want to skip over any other words between the two hits. Remember, * simply means "zero or more of the preceding regular expression". So (abc)* means "" (zero repetitions!) or "abc" or "abcabc" or "abcabcabc" ... but not "abcfoo".

For search and replace, you probably want to use sed. Your instructor seems to also suggest Emacs as an alternative.

Please don't post homework; read the forum rules.
# 3  
Old 09-29-2008
this might be the answer for your second question..
Code:
 
sed -e 's/\(\*\)\(.*\)\(\*\)\(.*\)/_\2_\4/g' -e 's/\(^[0-9][0-9]:[0-9][0-9]\)\( \)\(.[^ ]*\)\( [^.] *\)\(.*\)/\[\1\]***\3***\5/g' filename

# 4  
Old 09-29-2008
Sorry about the homework post but my professor said that we can get the info from any public site. Thats the only reason. In this case it is not cheating...
# 5  
Old 09-29-2008
It's not about cheating, it's about the usage rules for this site which you accepted when you signed up.
# 6  
Old 09-29-2008
I agree with era, maybe your professor has his rules but we have our own.

Thread closed!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Usage of grep '^$1' filename

There is a file name list_filenames.dat, this has all the list of all files I need to encrypt, I did not understand what the following syntax is doing: grep -s "^$1" list_filenames.dat, when I manually run this command it just returns all the lines, what is the usage of this ? can someone... (4 Replies)
Discussion started by: okkadu
4 Replies

2. Homework & Coursework Questions

grep usage help?

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I have to find all the files where the function sequentialInsert is called and the directory is ~cs252/Assignments/commandsAsst/project 2.... (2 Replies)
Discussion started by: jennkat
2 Replies

3. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

4. Shell Programming and Scripting

grep command usage

what is the grep command to get the second occurence of pattern in a file or how to do with sed ? (1 Reply)
Discussion started by: santosh1234
1 Replies

5. Shell Programming and Scripting

Problems in Usage of grep

Hi all, I have a file resp_cde.ats which has values as:- APPDIR=C:\Program Files\Cogny\cert PUBSDIR=C:\Program Files\Cognoy\cert\documentation TOURDIR=C:\Program Files\Cognoy\cert\tour DATADIR=C:\Program Files\Cognoy\cert\data Now I use the grep command in a shell script:- x=`grep... (2 Replies)
Discussion started by: vikasrout
2 Replies

6. UNIX for Advanced & Expert Users

Grep usage

my file contains xxabced.p dlksfad; dflsdkjflkds flksdjflkdioewf erfsdlkfjsdla; dlkfjsd;lfkj msgdadf.p dslk kdjflksdjfl;asdfasdfjkljl fdsf;jd ppuskldf.p i want the output is xxabced.p msgdadf.p ppuskldf.p Can any one give the command? (1 Reply)
Discussion started by: kingganesh04
1 Replies

7. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

8. UNIX for Dummies Questions & Answers

Grep usage help

Hello, I have a list in .txt format of email addresses and I need to extract just a specific domain ... The list format is like: "123456";"user@domain.com";"email";"john";"name" "123457";"user2@domain.com";"email";"john";"name" "123458";"user3@domain.com";"email";"john";"name"... (7 Replies)
Discussion started by: holyearth
7 Replies

9. UNIX for Advanced & Expert Users

grep usage

grep can filter the text which want to display, but if I want it do not show the text specific in grep, how to do? thk a lot! (2 Replies)
Discussion started by: zp523444
2 Replies

10. UNIX for Dummies Questions & Answers

grep Vs CPU usage

Hi, I have one basic doubt, that using grep command frequently , will it have direct impact on the CPU load, pls clarify for eg, if i run a non stop script containing while loop to grep some parameters, what will be the load in CPU.. thanks (3 Replies)
Discussion started by: vasikaran
3 Replies
Login or Register to Ask a Question