table of contents
IGAWK(1) | Commandes utilitaires | IGAWK(1) |
NOM¶
igawk - gawk avec inclusion de fichiers
SYNOPSIS¶
igawk [ options gawk ] -f
fichier-programme [ -- ] fichier ...
igawk [ options gawk ] [ -- ] texte-programme
fichier ...
DESCRIPTION¶
Igawk est un simple script shell qui ajoute la capacité à gawk(1) de contenir des fichiers inclus.
Les programmes AWK pour igawk sont les mêmes que pour sauf que, en plus, vous pouvez avoir des lignes de la forme
@include getopt.awk
OPTIONS¶
Voyez gawk(1) pour une description complète du langage AWK et des options que gawk prend en charge.
EXEMPLES¶
cat << EOF > test.awk @include getopt.awk BEGIN { while (getopt(ARGC, ARGV, "am:q") != -1) ... } EOF igawk -f test.awk
AUTEUR¶
Arnold Robbins (arnold@gnu.org).
VOIR AUSSI¶
Effective AWK Programming, Édition 1.0, publié par la Free Software Foundation, 1995.
TRADUCTION¶
Frédéric Delanoy <delanoy_f at yahoo.com>, 2001.
3 novembre 1999 | Free Software Foundation |