Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 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?
j0hnb is offline  
Old 11-22-2005, 11:48 AM   #2 (permalink)
Insane
 
Location: Vermont
Does it have to be awk?
I could help with python or perl.
RAGEAngel9 is offline  
Old 11-22-2005, 11:54 AM   #3 (permalink)
Adequate
 
cyrnel's Avatar
 
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
cyrnel is offline  
Old 11-22-2005, 12:52 PM   #4 (permalink)
Crazy
 
Location: Arnold, MD
Pure Awk... I'm rather clueless when it comes to awk so I'm not gonna be of much help sadly.
j0hnb is offline  
Old 11-22-2005, 01:21 PM   #5 (permalink)
Adequate
 
cyrnel's Avatar
 
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
cyrnel is offline  
Old 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.
j0hnb is offline  
Old 11-22-2005, 02:17 PM   #7 (permalink)
I am Winter Born
 
Pragma's Avatar
 
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!
Pragma is offline  
 

Tags
awkinput, script


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 01:17 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62