Is there online help for awk programming


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Is there online help for awk programming
# 1  
Old 08-17-2001
Question Is there online help for awk programming

Can anybody please supply me with a good url to get online help to awk programming, with good examples.

Yes I've taken that big step in trying to master 'awk' after being able to avoid it for the last couple of years :-)

Failing that, is there any good books I can get instead.

Many thanks

Colin
# 2  
Old 08-17-2001
check it out

Book:

awk & sed O'Reilly ISBN: 1-56592-225-5

removed html tags for readability --oombera

Last edited by oombera; 02-18-2004 at 03:58 PM..
# 3  
Old 08-17-2001
personaly i would start with the following books in this order. all by Oreilly

1) Learning the KORN Shell (or what ever your shell is)
2) Mastering regular expressions
3) then what ever scripting/programming books you like.

i think that after the expression book you will beable to take alot more out of all the other books after that.

and its not that hard of a book to read.
# 4  
Old 08-21-2001
Bug Re Awk Book.

Found a good book called 'The AWK Programming Language' by Alfred V.Aho, Brian W. Kernighan and Peter J Weinberger.

It explains everything you need to know, with lots of examples.

The only down side is the cost and the page count (204 pages) and £40.00 UK Pounds. But I think it's worth it.

Cheers
Colin

removed html tags for readability --oombera

Last edited by oombera; 02-18-2004 at 03:57 PM..
# 5  
Old 08-22-2001
This link was posted a few weeks back, and has been bookmarked by me:
http://vectorsite.tripod.com/tsawk0.html

 
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk programming -Passing variable to awk for loop

Hi All, I am new to AWK programming. I have the following for loop in my awk program. cat printhtml.awk: BEGIN -------- <some code here> END{ ----------<some code here> for(N=0; N<H; N++) { for(M=5; M<D; M++) print "\t" D ""; } ----- } ... (2 Replies)
Discussion started by: ctrld
2 Replies

2. UNIX for Dummies Questions & Answers

awk online to exclude rows

Hello, I have 3 columns like shown below: 1 1800 1900 2 1765 1900 3 1654 2054 4 1326 1499 5 1540 1765 I want only those rows where column 2 and column 3's values don't fall within 1800-1900 both inclusive. My output should only be: 4 1326 1499 5 1540 1765 Is there a quick awk... (3 Replies)
Discussion started by: Gussifinknottle
3 Replies

3. Shell Programming and Scripting

awk programming

Need assistance using awk . Need assistance in awk programming. Any idea of getting the marked data into a file. </tr> <tr> <td class='labelOptional_ind'> cdr.00012325.0000000000000000.20130612.050005.WANP4722_csv </td> <td width='15%' class='labelOptional'> <div align='center'>... (8 Replies)
Discussion started by: ajayram_arya
8 Replies

4. Programming

I would like an online programming teacher.

I want to learn programming so I can do the really neat stuff on computers, you know like making applications and mods to applications, designing GUI's and other stuff. I have a great imagination and have some really cool ideas but dont know how to make them a reality yet. I have seen all the... (2 Replies)
Discussion started by: Spades71392
2 Replies

5. Shell Programming and Scripting

How to print more than online using awk

Would you please help me on formatting the following lines of information. Input file: -- appl = host = user = / pid = 76 elapsed = 0.000 seconds server_elapsed = 0.000 select emp_no, dept_no from emp where empname like 'Rob%' ; -- appl = host = user = / pid = 76 elapsed =... (10 Replies)
Discussion started by: newlearner
10 Replies
Login or Register to Ask a Question