SED and it used with | and grep


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers SED and it used with | and grep
# 1  
Old 02-01-2004
Question SED and it used with | and grep

I am really lost I don't know what this line does. Please help I'm very lost. Thanks in advance.

cat CPROGRAMS.c
|sed 's/[^a-z(_]/ /g'|tr ' ' '\012'
|grep '[a-z]'
|sed 's/^[(]*/ /'
|grep '($'|sort -u|tr -d "("`
# 2  
Old 02-02-2004
If you really want to know, run each part one-by-one and see how it changes the output...

For example, run:
cat CPROGRAMS.c | sed 's/[^a-z(_]/ /g'
(replaces with blanks anything that is not a parenthesis, underscore, or small letter)

then run:
cat CPROGRAMS.c | sed 's/[^a-z(_]/ /g' | tr ' ' '\012'
(takes it a step further by turning those blank spaces into return lines)

and so on... at first glance, there's probably a much shorter way to do what you're trying to do. What are you trying to do btw?
# 3  
Old 02-02-2004
I read a bunch of C programs and put them in a file.

Now I want to extract all the funtions that start with _

I'm a little confused with the concept of SED and GREP and how to use Regular Expressions and Search Patterns with theses commands.

Thanks once again...
# 4  
Old 02-02-2004
oreilly has a great book on regular expressions.
REGEX's are an essential to anyone scripting or programming.

as far as the pipe. just as was said in various other posts asking about the pipe. it takes the output from one command and feeds it into another command.

also if you are confused about what the line does the first place to start is by reading the man pages for each command used.

this should clear it up enuff so you can fill in the gaps and get a grasp on it.

Last edited by Optimus_P; 02-02-2004 at 10:45 AM..
# 5  
Old 02-03-2004
Hammer & Screwdriver yawwwwn

Oh well, I think you really should read more books, but I was bored and stepped through that line piece by piece, so...

1) sed 's/[^a-z(_]/ /g'

Replace anything that's not a small letter, left parenthesis or underscore with a blank space

2) tr ' ' '\012'

Replaces every blank space with a return character

3) grep '[a-z]'

Only display the lines containing a small letter in them

4) sed 's/^[(]*/ /'

Inserts a blank space at the beginning of every line, erasing the left parenthesis from the beginning of any lines that might have one

5) grep '($'

Display only lines that end with a left parenthesis

6) sort -u

Sort the result of the last command and if one entry is displayed multiple times

7) tr -d "("

Remove the left parenthesis from the end of the lines that were just sorted

------------------------

If all you're trying to do is display the name of the functions, then you can do something like:

grep '^_.*(.*)' CPROGRAMS.c | awk -F"(" '{print $1}' | sort -u

There's probably an even shorter way, but this is an improvement. Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed and awk usage to grep a pattern 1 and with reference to this grep a pattern 2 and pattern 3

Hi , I have a file where i have modifed certain things compared to original file . The difference of the original file and modified file is as follows. # diff mir_lex.c.modified mir_lex.c.orig 3209c3209 < if(yy_current_buffer -> yy_is_our_buffer == 0) { --- >... (5 Replies)
Discussion started by: breezevinay
5 Replies

2. UNIX for Dummies Questions & Answers

Help with sed/grep

Hello Everyone! I'm kind of new to parsing and would like extract a partial part of my nmap scan output so I can convert it to csv/excel: My current file has two types of lines like this: Nmap scan report for dns1 (1.1.1.1) Nmap scan report for dns2 (2.2.2.2) Nmap scan report for 3.3.3.3 ... (3 Replies)
Discussion started by: SarahS
3 Replies

3. Shell Programming and Scripting

Help with sed/grep

Hi, I have a file with reoccurring patterns and I want extract the 3rd line after the match, then delete another pattern from that third line. For example the file is in the following format: Hello Name: Abc Number: 123 Hello Name: FQE Number: 543 This occurs more than 100... (4 Replies)
Discussion started by: wsn
4 Replies

4. Linux

sed and grep

I am stranded with a problem. Please solve. How will you remove blank lines from a file using sed and grep? ( blank line contains nothing or only white spaces). I run the below commands of sed and grep but grep isn't giving output as desired. Why? sed '/^*$/d' blank grep -v "^*$" blank... (3 Replies)
Discussion started by: ravisingh
3 Replies

5. Shell Programming and Scripting

sed/tr/grep help

So I have a html file with a bunch of words inside tags and I need to extract just the words, and I'm not sure exactly what the best way to do this is. The format is as follows: <tr> <td>word 1</td> <td>word 2</td> </tr> And all I want to extract is the 'word 2'. First I tried... (3 Replies)
Discussion started by: flightskoo
3 Replies

6. Shell Programming and Scripting

help with SED + GREP

HI all, i have a line in a file it contains Code: one;two_1_10;two_2_10;two_3_10;three~ now i need to get the output as Code: one;two_1_abc_10;two_2_abc_10;two_3_abc_10;three~ ( 1 should be replaced with 1_abc for two__abc_10 , and one more thing the number of occurances of... (6 Replies)
Discussion started by: 2001.arun
6 Replies

7. UNIX for Dummies Questions & Answers

sed or grep?

hello everybody! I have a html file which is not properly formatted meaning that the whole content is in one line. I want to to cut out certain parts of that file. Those parts are between ' #" ' and ' " ' and always start with ' sec_ ' and after the ' sec_ ' any number of characters and ' _... (2 Replies)
Discussion started by: MastaFue
2 Replies

8. UNIX for Dummies Questions & Answers

Grep or Sed

Hi All, I have created a bourne script that basically wants to split a file up in to different parts. I have this working if the file has all the information on different lines but if it doesn't then it doesn't work. i.e. If this is the file hello 12345 good bye 6789 I could grep all the... (5 Replies)
Discussion started by: jazz8146
5 Replies

9. Shell Programming and Scripting

using sed to grep

I have a file that contains many instances of double dollar signs. I want to use sed to get the first occurrence. for example, given the following data. #Beginning of file AB 34 $$ AB $$ AB 98 $$ I only want to pull out: AB 34 $$ (1 Reply)
Discussion started by: wxornot
1 Replies

10. UNIX for Dummies Questions & Answers

grep sed

OK, I am trying to become more familiar with grep and sed. I have a file that is storing some records. I am allowing a user to search for a keyword in the file with this: grep -i "$keyword" testFile|sed -n -e 's/^/\ /' -e 's/:/\ /gp' ... (15 Replies)
Discussion started by: ericelysia
15 Replies
Login or Register to Ask a Question