Content-type: text/html Manpage of IGAWK

IGAWK

Section: Commandes utilitaires (1)
Updated: 3 nov 1999
Index Return to Main Contents
 

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 gawk, sauf que, en plus, vous pouvez avoir des lignes de la forme

@include getopt.awk

dans votre programme, pour inclure le fichier getopt.awk à partir du répertoire courant ou d'un répertoire dans le chemin de recherche.

 

OPTIONS

Voyez gawk(1) pour une description complète du langage AWK et des options que gawk supporte.  

EXEMPLES

cat << EOF > test.awk
@include getopt.awk

BEGIN {
        while (getopt(ARGC, ARGV, "am:q") != -1)
                ...
}
EOF

igawk -f test.awk

 

VOIR AUSSI

gawk(1)

Effective AWK Programming, Édition 1.0, publié par la Free Software Foundation, 1995.

 

AUTEUR

Arnold Robbins (arnold@gnu.org).

 

TRADUCTION

Frédéric Delanoy <delanoy_f at yahoo.com>, 2001.


 

Index

NOM
SYNOPSIS
DESCRIPTION
OPTIONS
EXEMPLES
VOIR AUSSI
AUTEUR
TRADUCTION

This document was created by man2html, using the manual pages.
Time: 20:41:57 GMT, July 10, 2005