[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

Index: N -- P

Jump to:   !   #   $   &   -   /   <   =   >   @   \   _   |   ~  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W  

Index Entry Section

N
names, use of13.1 Function Definition Syntax
namespace issues in awk15.13 Naming Library Function Global Variables
namespaces13.1 Function Definition Syntax
NetBSDThe GNU Project and This Book
new awkHistory of awk and gawk
new awk vs. old awk2.1 A Rose By Any Other Name
newline2.6 awk Statements Versus Lines
next file statement9.8 The nextfile Statement
next statement9.7 The next Statement
next, inside a user-defined function9.7 The next Statement
nextfile function15.2 Implementing nextfile as a Function
nextfile statement9.8 The nextfile Statement
NF5.2 Examining Fields
NF10.2 Built-in Variables that Convey Information
non-interactive buffering vs. interactiveInteractive vs. Non-Interactive Buffering
not operator7.11 Boolean Expressions
NR5.1 How Input is Split into Records
NR10.2 Built-in Variables that Convey Information
null string5.5.2 Using Regular Expressions to Separate Fields
null string7.4 Conversion of Strings and Numbers
null string7.9 True and False in awk
null string, as array subscript11.8 Using Uninitialized Variables as Subscripts
number of fields, NF5.2 Examining Fields
number of records, NR, FNR5.1 How Input is Split into Records
numbers, used as subscripts11.7 Using Numbers to Subscript Arrays
numeric character values15.5 Translating Between Characters and Numbers
numeric constant7.1.1 Numeric and String Constants
numeric output format6.4 Controlling Numeric Output with print
numeric string7.10 Variable Typing and Comparison Expressions
numeric value7.1.1 Numeric and String Constants

O
obsolete features14.4 Obsolete Options and/or Features
obsolete options14.4 Obsolete Options and/or Features
OFMT6.4 Controlling Numeric Output with print
OFMT7.4 Conversion of Strings and Numbers
OFMT10.1 Built-in Variables that Control awk
OFS6.3 Output Separators
OFS10.1 Built-in Variables that Control awk
old awkHistory of awk and gawk
old awk vs. new awk2.1 A Rose By Any Other Name
one-liners3. Useful One Line Programs
operations, logical7.11 Boolean Expressions
operator precedence7.14 Operator Precedence (How Operators Nest)
operators, arithmetic7.5 Arithmetic Operators
operators, assignment7.7 Assignment Expressions
operators, boolean7.11 Boolean Expressions
operators, decrement7.8 Increment and Decrement Operators
operators, increment7.8 Increment and Decrement Operators
operators, regexp matching4.1 How to Use Regular Expressions
operators, relational7.10 Variable Typing and Comparison Expressions
operators, relational7.10 Variable Typing and Comparison Expressions
operators, short-circuit7.11 Boolean Expressions
operators, string7.6 String Concatenation
operators, string-matching4.1 How to Use Regular Expressions
options, command line14. Running awk
options, long14. Running awk
or operator7.11 Boolean Expressions
ord15.5 Translating Between Characters and Numbers
order of evaluation12.1 Calling Built-in Functions
ORS6.3 Output Separators
ORS10.1 Built-in Variables that Control awk
output6. Printing Output
output field separator, OFS6.3 Output Separators
output format specifier, OFMT6.4 Controlling Numeric Output with print
output record separator, ORS6.3 Output Separators
output redirection6.6 Redirecting Output of print and printf
output, buffering12.4 Built-in Functions for Input/Output
output, bufferingControlling Output Buffering with system
output, formatted6.5 Using printf Statements for Fancier Printing
output, piping6.6 Redirecting Output of print and printf

P
passes, multiple14.2 Other Command Line Arguments
password file15.11 Reading the User Database
path, search14.3 The AWKPATH Environment Variable
pattern, BEGIN8.1.5 The BEGIN and END Special Patterns
pattern, default2.3 A Very Simple Example
pattern, definition of8. Patterns and Actions
pattern, empty8.1.6 The Empty Pattern
pattern, END8.1.5 The BEGIN and END Special Patterns
pattern, range8.1.4 Specifying Record Ranges with Patterns
pattern, regular expressions4. Regular Expressions
patterns, types of8.1.1 Kinds of Patterns
per file initialization and clean-up15.9 Noting Data File Boundaries
PERLC.3 Probable Future Extensions
pipeline, input5.8.6 Using getline from a Pipe
pipes for output6.6 Redirecting Output of print and printf
portability issues2.6 awk Statements Versus Lines
portability issues4.2 Escape Sequences
portability issues6.8 Closing Input and Output Files and Pipes
portability issues11.6 The delete Statement
portability issues12.3 Built-in Functions for String Manipulation
portability issues12.4 Built-in Functions for Input/Output
portability issues13.1 Function Definition Syntax
portability issues15.1 Simulating gawk-specific Features
porting gawkC.2.2 Porting gawk to a New Operating System
POSIX awk4.2 Escape Sequences
POSIX awk4.3 Regular Expression Operators
POSIX awk4.3 Regular Expression Operators
POSIX awk4.3 Regular Expression Operators
POSIX awk5.5.5 Field Splitting Summary
POSIX awk6.4 Controlling Numeric Output with print
POSIX awk6.5.3 Modifiers for printf Formats
POSIX awk7.4 Conversion of Strings and Numbers
POSIX awk7.5 Arithmetic Operators
POSIX awk7.7 Assignment Expressions
POSIX awk7.14 Operator Precedence (How Operators Nest)
POSIX awk7.14 Operator Precedence (How Operators Nest)
POSIX awk9.5 The break Statement
POSIX awk9.6 The continue Statement
POSIX awk9.7 The next Statement
POSIX awk10.1 Built-in Variables that Control awk
POSIX awk12.3 Built-in Functions for String Manipulation
POSIX awkMore About `\' and `&' with sub, gsub and gensub
POSIX awk13.1 Function Definition Syntax
POSIX mode14.1 Command Line Options
POSIXLY_CORRECT environment variable14.1 Command Line Options
precedence7.14 Operator Precedence (How Operators Nest)
precedence, regexp operators4.3 Regular Expression Operators
print statement6.1 The print Statement
printf statement, syntax of6.5.1 Introduction to the printf Statement
printf, format-control characters6.5.2 Format-Control Letters
printf, modifiers6.5.3 Modifiers for printf Formats
printing6. Printing Output
procedural languages2. Getting Started with awk
process information6.7 Special File Names in gawk
processing arguments15.10 Processing Command Line Options
program file2.2.3 Running Long Programs
program, awk1.1 Using This Book
program, definition of2. Getting Started with awk
program, definition of2. Getting Started with awk
program, self contained2.2.4 Executable awk Programs
programs, documenting2.2.5 Comments in awk Programs
programs, documenting15.13 Naming Library Function Global Variables
pwcat program15.11 Reading the User Database
pwcat.c15.11 Reading the User Database

Jump to:   !   #   $   &   -   /   <   =   >   @   \   _   |   ~  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W  


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

This document was generated by root l2-hrz on May, 9 2001 using texi2html