Sponsored Content
Top Forums UNIX for Dummies Questions & Answers In the book.. i read... what does this mean? Post 302230338 by Xcislav on Friday 29th of August 2008 05:12:01 AM
Old 08-29-2008
In the book.. i read... what does this mean?

AWK&SED oreilly book:
Quote:
Awk, in the usual case, interprets each input line as a record and each word on that line, delimited by
spaces or tabs, as a field. (These defaults can be changed.)
Before text AWK is said that programming language... in that context, what it be if defaults would be changed. What is the special meaning of record or field?
 

9 More Discussions You Might Find Interesting

1. Solaris

e-book

Hi everybody I a new one And I have just wanted to research on Sun Solaris So can you help me what e-book to read ( and if can you give me the direct address to load ) Thks so much (3 Replies)
Discussion started by: iwbasts
3 Replies

2. UNIX for Dummies Questions & Answers

Unix Book

OK Guys! I need a top of the line unix system administration book for newbies! help! thanks (1 Reply)
Discussion started by: disturbe_d
1 Replies

3. Shell Programming and Scripting

Book Recomendation

What would be a good starter's book for learning Korn shell scripting? (1 Reply)
Discussion started by: soupbone38
1 Replies

4. What is on Your Mind?

looking for a book suggestion

On the basic concepts of programming. I mean I am 100% self taught so I need a book to fix all my bad habits and misconceptions. I mean I want a solid book over the basics. Explains what an array is, a string, variable, stacks, and so forth. I only know how to write code in shell,... (7 Replies)
Discussion started by: tlarkin
7 Replies

5. UNIX for Dummies Questions & Answers

Book reference

hello I am looking for book reference far Linux books that have information that is up to date. Example: Running Linux, O`Reilly, year 1995. Or Linux Administration, A beginners guide, 5`th ed, Mc Graw Hill Osbourn, year 2009. Thank you (2 Replies)
Discussion started by: cowLips
2 Replies

6. Red Hat

Linux book

Hi, Can any one suggest me which book will be good for learning Linux server admin. I am new to it and trying for interview preparation. Thanks (2 Replies)
Discussion started by: chetansingh23
2 Replies

7. Programming

Programming book should every programmer read?

hi, i want some advice on a programming book should every programmer read? (2 Replies)
Discussion started by: kaja
2 Replies

8. Programming

Question regarding a book for C++

Hi all. A course I am has Beginning C prescribed for our C++ work, but I am wondering, is this correct? Why not Beginning C++ by the same author? We code in C++ and learn C++, when starting a project in Code::Blocks we select C++. I may just be confused. Thanks for the help. (1 Reply)
Discussion started by: AnthonyWall56
1 Replies

9. What is on Your Mind?

Daemon by Daniel Suarez - Who has not read or listened to this book?

Who has not read or listened to this book? For those who read Daemon, what did you think? https://www.unix.com/members/1-albums221-picture889.jpg (0 Replies)
Discussion started by: Neo
0 Replies
IGAWK(1)							 Utility Commands							  IGAWK(1)

NAME
igawk - gawk with include files SYNOPSIS
igawk [ all gawk options ] -f program-file [ -- ] file ... igawk [ all gawk options ] [ -- ] program-text file ... DESCRIPTION
Igawk is a simple shell script that adds the ability to have ``include files'' to gawk(1). AWK programs for igawk are the same as for gawk, except that, in addition, you may have lines like @include getopt.awk in your program to include the file getopt.awk from either the current directory or one of the other directories in the search path. OPTIONS
See gawk(1) for a full description of the AWK language and the options that gawk supports. EXAMPLES
cat << EOF > test.awk @include getopt.awk BEGIN { while (getopt(ARGC, ARGV, "am:q") != -1) ... } EOF igawk -f test.awk SEE ALSO
gawk(1) Effective AWK Programming, Edition 1.0, published by the Free Software Foundation, 1995. AUTHOR
Arnold Robbins (arnold@skeeve.com). Free Software Foundation Nov 3 1999 IGAWK(1)
All times are GMT -4. The time now is 12:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy