名前

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 ( [email protected]).

Recommended readings

Pages related to igawk you should read also: