IGAWK

Section: Utility Commands (1)
Updated: Nov 3 1999
Index JM Home Page roff page
 

名前

igawk - インクルードファイルを使う gawk  

書式

igawk [ all gawk options ] -f program-file [ -- ] file ...
igawk [ all gawk options ] [ -- ] program-text file ...  

説明

igawkgawk(1) に「インクルードファイル」の機能を追加する簡単なシェルスクリプトである。

igawk で使う AWK プログラムは gawk と同じであるが、 カレントディレクトリまたは検索パスのディレクトリにあるファイル getopt.awk をインクルードするために、

@include getopt.awk

のような行をプログラムに書くことができる。  

オプション

AWK 言語と gawk がサポートするオプションについての完全な説明は、 gawk(1) を参照すること。  

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

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

igawk -f test.awk
 

関連項目

gawk(1)

Effective AWK Programming, Edition 1.0, published by the Free Software Foundation, 1995.  

著者

Arnold Robbins (arnold@skeeve.com).


 

Index

名前
書式
説明
オプション
関連項目
著者

This document was created by man2html, using the manual pages.
Time: 04:31:19 GMT, November 19, 2007