Unix and Linux Discussions Tagged with awk |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
10,360 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
270 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,659 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,651 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,649 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,191 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
2,508 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,211 |
Shell Programming and Scripting |
|
|
|
7 |
2,879 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
4,104 |
Shell Programming and Scripting |
|
|
|
4 |
2,598 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,600 |
Shell Programming and Scripting |
|
|
|
9 |
2,385 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,735 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,191 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,755 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,907 |
Shell Programming and Scripting |
|
|
|
2 |
3,512 |
UNIX for Beginners Questions & Answers |
|
|
|
20 |
4,300 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,028 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,456 |
Shell Programming and Scripting |
|
|
|
2 |
856 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,391 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
7,078 |
Shell Programming and Scripting |
|
|
|
4 |
1,309 |
Shell Programming and Scripting |
|
|
|
2 |
4,776 |
Shell Programming and Scripting |
|
|
|
1 |
414 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
2,920 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,167 |
UNIX for Beginners Questions & Answers |
|
|
|
25 |
3,650 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
652 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,316 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,876 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
2,738 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
5,394 |
Shell Programming and Scripting |
|
|
|
2 |
2,683 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,552 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
2,471 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
12,911 |
Shell Programming and Scripting |
|
|
|
5 |
5,608 |
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)