IGAWK

Section: Utility Commands (1)
Updated: Nov 3 1999
Index JM Home 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).

関連キーワード

IGAWK, igawk, getopt, file, include, Index, 名前, all, EOF, プログラム

Linux マニュアル 一覧

[man1] [man2] [man3] [man4] [man5] [man6] [man7] [man8]
[a] [b] [c] [d] [e] [f] [g] [h] [i] [j] [k] [l] [m] [n] [o] [p] [q] [r] [s] [t] [u] [v] [w] [x] [y] [z]

 

Index

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

This document was created by man2html, using the manual pages.
Time: 12:08:54 GMT, June 11, 2022