Unix and Linux Discussions Tagged with awk |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
3,814 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,976 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,839 |
UNIX for Beginners Questions & Answers |
|
|
|
16 |
4,000 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,131 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
9,583 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
2,876 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
2,167 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,502 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,741 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,599 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
13,723 |
Shell Programming and Scripting |
|
|
|
12 |
2,799 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
11,515 |
Shell Programming and Scripting |
|
|
|
15 |
5,737 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,649 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,888 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,894 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
4,657 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
11,481 |
Shell Programming and Scripting |
|
|
|
3 |
2,717 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,563 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,977 |
Shell Programming and Scripting |
|
|
|
2 |
2,950 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,141 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
10,816 |
Shell Programming and Scripting |
|
|
|
3 |
8,445 |
Shell Programming and Scripting |
|
|
|
7 |
5,962 |
Shell Programming and Scripting |
|
|
|
6 |
10,098 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
1,796 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,668 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,722 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,115 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
2,919 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,939 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,864 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,203 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,481 |
Shell Programming and Scripting |
|
|
|
3 |
1,903 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,149 |
UNIX for Beginners Questions & Answers |
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)