Sponsored Content
Full Discussion: K&R C code edits
Homework and Emergencies Homework & Coursework Questions K&R C code edits Post 302562593 by Corona688 on Friday 7th of October 2011 11:02:03 AM
Old 10-07-2011
Quote:
Originally Posted by theexitwound
When you use sed '/^#/p;/^#/d;s/int/flub/g' in this fashion, how does it operate on the line? you have 3 commands (1. print, 2. delete, 3. substitute) acting on one big line of text. Does it do all 3 at one time, or one pass with command 1, another with command 2, then 3? I'm not clear on how this works.
By default, it does one pass with command 1, one pass with command 2, then one pass with command 3. But some commands alter what happens after them, like /..../d.
Quote:
Also, after piping the flat file into sed, why are you printing the preprocessor line then deleting it?
So that preprocessor lines are (1) printed unaltered, then (2) deleted, preventing them getting being mangled by anything happening in step (3).
Quote:
At this point, I've attempting to identify the functions left using a combination of grep and sed most but am unable to do much with it.
That sounds like a bad combination... again, those tools are line-based and this junk is NOT. If you slice out bits and pieces instead of operating on the entire line, how're you going to put it back together?

Quote:
I don't know how to isolate something in this format:
Code:
word value(word value, word value, word value....)

regular expressions and backreferences. You use brackets to match the parts you need.

Code:
# matches and replaces the entire string with nothing.
$ echo "int a(int b, int c)" | sed 's/\([a-z]* [a-z]*\)(\([a-z]* [a-z]*\)\(, [a-z]* [a-z]*\))//g'

# prints first match.
$ echo "int a(int b, int c)" | sed 's/\([a-z]* [a-z]*\)(\([a-z]* [a-z]*\)\(, [a-z]* [a-z]*\)*)/\1/g'
int a
# prints second match
$ echo "int a(int b, int c, int d)" | sed 's/\([a-z]* [a-z]*\)(\([a-z]* [a-z]*\)\(, [a-z]* [a-z]*\)*)/\2/g'
int b
# prints third match
$ echo "int a(int b, int c)" | sed 's/\([a-z]* [a-z]*\)(\([a-z]* [a-z]*\)\(, [a-z]* [a-z]*\)*)/\3/g'
, int d
$

Note how the third match only matches the last thing in (...)* when there's more than one. I think you'd have to nest it like ( (...)* ) to get the entire block.

You can use that in awk too,
Code:
match("string", /regex/, array)

and the resulting matches fill array from 1 to n. I'm not sure whether you need to escape () like \( \) in awk or not.
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need help with scripting mass file edits..

Hello, I am wanting to know a way to shell (ksh)script-edit a file by having a script that searches for a specific string, and then input lines of text in the file after that specific string. Please help, as I will be up all night if I can't figure this out. (16 Replies)
Discussion started by: LinuxRacr
16 Replies

2. Shell Programming and Scripting

Multiple edits to a bunch of html files

I'm trying to upgrade a whole bunch of pages on my site to a new design. I thought one way of doing it would be to enclose the content in special comment tags and then use some form of script to wrap the new html around it. Like this: <!-- content start --> <h1>Blah blah blah</h1> yada yada... (9 Replies)
Discussion started by: dheian
9 Replies

3. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

4. UNIX for Dummies Questions & Answers

Compile & Run Java Code

The java program is a part of speech tagger -> The Stanford NLP (Natural Language Processing) Group The goal is to use this script as part of a webpage to tag parts of speech based on a user-inputted string. I have no idea what to do with the files - I'm a complete *nix noob. I tried running... (4 Replies)
Discussion started by: tguillea
4 Replies

5. UNIX for Dummies Questions & Answers

OpenLDAP DB_CONFIG edits, changes live? or do I need run something

So I am probably missing something , but when I made edits to my DB_CONFIG file to fix form db_lock issues, the changes are not propagating after a service restart. Anyone know if I need to run anything else, or are the changes live? (0 Replies)
Discussion started by: jcejka
0 Replies

6. Shell Programming and Scripting

Problem with call of Java Programm & return code handling & output to several streams.

Hello Everybody, thanks in advance for spending some time in my problem. My problem is this: I want to call a java-Programm out of my shell skript, check if die return code is right, and split the output to the normal output and into a file. The following code doesn't work right, because in... (2 Replies)
Discussion started by: danifunny
2 Replies

7. UNIX for Dummies Questions & Answers

multiple text edits inone pass

File_1 looks like: bunch of text Untitled Placemark bunch of text bunch of text Untitled Placemark bunch of text bunch of text Untitled Placemark bunch of text File_2 looks like: Title_001 Title_002 Title_003 First: I need to replace the 1st occurence of "Untitled Placemark"... (2 Replies)
Discussion started by: kenneth.mcbride
2 Replies

8. Shell Programming and Scripting

SFTP Shell Script Get & Delete && Upload & Delete

Hi All, Do you have any sample script, - auto get file from SFTP remote server and delete file in remove server after downloaded. - only download specify filename - auto upload file from local to SFTP remote server and delete local folder file after uploaded - only upload specify filename ... (3 Replies)
Discussion started by: weesiong
3 Replies
All times are GMT -4. The time now is 09:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy