11-22-2005, 09:43 AM | #1 (permalink) |
Crazy
Location: Arnold, MD
|
[awk]Input script
I need a script that will do this:
1) accepts lines of input from another process (tethereal); 2) print portions (fields) of each input line to a file; 3) When the file contains a certain number of lines, a new file is started. Can anyone help me out with it? |
11-22-2005, 11:54 AM | #3 (permalink) |
Adequate
Location: In my angry-dome.
|
Pure awk or do you want to wrap an awk line in a shell script?
I mean like... wipe outfile linecount=0 limit=100 while (read from input to EOF) or (linecount > limit) do awk '{print $1}' >> outfile increment linecount done Obviously not real. Doesn't handle file rotation/naming either.
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 |
11-22-2005, 01:21 PM | #5 (permalink) |
Adequate
Location: In my angry-dome.
|
I started to write something real but figure this is probably for an assignment. No?
Google for combinations of "awk manpage getline manual". You're bound to find bunches available for ethereal. The worst part is that it's old-school and a bit different. Doing what you want is a breeze though. Start simple. Suck in a fixed file of a few lines and see how the field printing works. Move to input from a pipe and build from there. Before perl arrived, awk & sed were required for survival. Easy stuff. You'll blow through it.
__________________
There are a vast number of people who are uninformed and heavily propagandized, but fundamentally decent. The propaganda that inundates them is effective when unchallenged, but much of it goes only skin deep. If they can be brought to raise questions and apply their decent instincts and basic intelligence, many people quickly escape the confines of the doctrinal system and are willing to do something to help others who are really suffering and oppressed." -Manufacturing Consent: Noam Chomsky and the Media, p. 195 |
11-22-2005, 02:16 PM | #6 (permalink) |
Crazy
Location: Arnold, MD
|
It's not for an assignment, it's more like a challenge. I have part of the script but I have been unable to get it to work correctly, and being as new to it as I am, I only learned of awk this week, i'm kinda lost of where to go with it. I'll toy with it some more and see what I can pull up.
|
11-22-2005, 02:17 PM | #7 (permalink) |
I am Winter Born
Location: Alexandria, VA
|
I'm actually writing a program similar to this for my job - using a perl script to parse tethereal output, sort based on tcp conversations, output to a database and to an HTML flat file.
What exactly were you having trouble with, and what did you need it for?
__________________
Eat antimatter, Posleen-boy! |
Tags |
awkinput, script |
|
|