Unix and Linux Discussions Tagged with sed awk |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
6,521 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,105 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,544 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,507 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,840 |
Shell Programming and Scripting |
|
|
|
3 |
6,713 |
Shell Programming and Scripting |
|
|
|
8 |
2,176 |
Shell Programming and Scripting |
|
|
|
6 |
2,439 |
Shell Programming and Scripting |
|
|
|
5 |
2,446 |
Shell Programming and Scripting |
|
|
|
6 |
1,728 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,296 |
Shell Programming and Scripting |
|
|
|
7 |
3,635 |
Shell Programming and Scripting |
|
|
|
7 |
7,923 |
Shell Programming and Scripting |
|
|
|
5 |
1,957 |
Shell Programming and Scripting |
|
|
|
5 |
7,897 |
Shell Programming and Scripting |
|
|
|
4 |
1,908 |
Red Hat |
|
|
|
5 |
4,568 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,862 |
Shell Programming and Scripting |
|
|
|
10 |
7,986 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,028 |
Shell Programming and Scripting |
|
|
|
1 |
3,022 |
Shell Programming and Scripting |
|
|
|
7 |
3,905 |
Shell Programming and Scripting |
|
|
|
5 |
2,072 |
Shell Programming and Scripting |
|
|
|
16 |
5,415 |
Shell Programming and Scripting |
|
|
|
19 |
11,416 |
Shell Programming and Scripting |
|
|
|
3 |
2,066 |
Shell Programming and Scripting |
|
|
|
21 |
20,325 |
Shell Programming and Scripting |
|
|
|
3 |
9,497 |
Shell Programming and Scripting |
|
|
|
4 |
3,377 |
Shell Programming and Scripting |
|
|
|
2 |
10,089 |
Shell Programming and Scripting |
|
|
|
1 |
1,857 |
Shell Programming and Scripting |
|
|
|
5 |
1,913 |
Shell Programming and Scripting |
|
|
|
4 |
3,927 |
Shell Programming and Scripting |
|
|
|
3 |
7,583 |
Shell Programming and Scripting |
|
|
|
1 |
3,624 |
Shell Programming and Scripting |
|
|
|
4 |
9,770 |
Shell Programming and Scripting |
|
|
|
2 |
6,220 |
Shell Programming and Scripting |
|
|
|
1 |
2,976 |
UNIX for Dummies 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)