OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / GNU_gawk / release / man1 / igawk.1
1 .\"
2 .\"   Copyright (C) 1994-1999 Free Software Foundation, Inc.
3 .\"
4 .\"   Permission is granted to make and distribute verbatim copies of
5 .\"this
6 .\"manual provided the copyright notice and this permission notice are
7 .\"preserved on all copies.
8 .\"
9 .\"   Permission is granted to copy and distribute modified versions of
10 .\"this manual under the conditions for verbatim copying, provided that
11 .\"the entire resulting derived work is distributed under the terms of a
12 .\"permission notice identical to this one.
13 .\"
14 .\"   Permission is granted to copy and distribute translations of this
15 .\"manual into another language, under the above conditions for modified
16 .\"versions, except that this permission notice may be stated in a
17 .\"translation approved by the Foundation.
18 .\"
19 .\" Japanese Version Copyright (c) 2001 Yuichi SATO
20 .\"         all rights reserved.
21 .\" Translated Mon Jun 25 22:07:43 JST 2001
22 .\"         by Yuichi SATO <ysato@h4.dion.ne.jp>
23 .\"
24 .TH IGAWK 1 "Nov 3 1999" "Free Software Foundation" "Utility Commands"
25 .SH 名前
26 igawk \- インクルードファイルを使う gawk
27 .SH 書式
28 .B igawk
29 [ all
30 .I gawk
31 options ]
32 .B \-f
33 .I program-file
34 [
35 .B \-\^\-
36 ] file .\^.\^.
37 .br
38 .B igawk
39 [ all
40 .I gawk
41 options ]
42 [
43 .B \-\^\-
44 ]
45 .I program-text
46 file .\^.\^.
47 .SH 説明
48 .I igawk
49
50 .IR gawk (1)
51 に「インクルードファイル」の機能を追加する簡単なシェルスクリプトである。
52 .PP
53 .I igawk
54 で使う AWK プログラムは
55 .I gawk
56 と同じであるが、
57 カレントディレクトリまたは検索パスのディレクトリにあるファイル
58 .B getopt.awk
59 をインクルードするために、
60 .RS
61 .sp
62 .ft B
63 @include getopt.awk
64 .ft R
65 .sp
66 .RE
67 のような行をプログラムに書くことができる。
68 .SH オプション
69 AWK 言語と
70 .I gawk
71 がサポートするオプションについての完全な説明は、
72 .IR gawk (1)
73 を参照すること。
74 .SH 例
75 .nf
76 .ft B
77 cat << EOF > test.awk
78 @include getopt.awk
79 .sp
80 BEGIN {
81         while (getopt(ARGC, ARGV, "am:q") != \-1)
82                 \&.\^.\^.
83 }
84 EOF
85 .sp
86 igawk \-f test.awk
87 .ft R
88 .fi
89 .SH 関連項目
90 .IR gawk (1)
91 .PP
92 .IR "Effective AWK Programming" ,
93 Edition 1.0, published by the Free Software Foundation, 1995.
94 .SH 著者
95 Arnold Robbins
96 .RB ( arnold@skeeve.com ).