-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcommand_line_options.html
892 lines (498 loc) · 36.9 KB
/
command_line_options.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
<!DOCTYPE HTML>
<html lang="ko" >
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161001174-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-161001174-3');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Command-line options | Introduction</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="">
<meta name="generator" content="GitBook 2.6.7">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/plugins/gitbook-plugin-fontsettings/website.css">
<link rel="next" href="./debugging.html" />
<link rel="prev" href="./tcp_ip.html" />
</head>
<body>
<div class="book"
data-level="15"
data-chapter-title="Command-line options"
data-filepath="command_line_options.md"
data-basepath="."
data-innerlanguage="">
<div class="book-summary">
<nav role="navigation">
<ul class="summary">
<li class="chapter " data-level="0" data-path="index.html">
<a href="./index.html">
<i class="fa fa-check"></i>
Introduction
</a>
</li>
<li class="chapter " data-level="1" data-path="bug_reports.html">
<a href="./bug_reports.html">
<i class="fa fa-check"></i>
<b>1.</b>
Bug reports
</a>
</li>
<li class="chapter " data-level="2" data-path="basics.html">
<a href="./basics.html">
<i class="fa fa-check"></i>
<b>2.</b>
Basics
</a>
<ul class="articles">
<li class="chapter " data-level="2.1" data-path="data_types.html">
<a href="./data_types.html">
<i class="fa fa-check"></i>
<b>2.1.</b>
Data Types
</a>
</li>
<li class="chapter " data-level="2.2" data-path="variables.html">
<a href="./variables.html">
<i class="fa fa-check"></i>
<b>2.2.</b>
Variables
</a>
</li>
<li class="chapter " data-level="2.3" data-path="regex.html">
<a href="./regex.html">
<i class="fa fa-check"></i>
<b>2.3.</b>
Regex
</a>
</li>
<li class="chapter " data-level="2.4" data-path="functions.html">
<a href="./functions.html">
<i class="fa fa-check"></i>
<b>2.4.</b>
Functions
</a>
</li>
<li class="chapter " data-level="2.5" data-path="escape_sequences.html">
<a href="./escape_sequences.html">
<i class="fa fa-check"></i>
<b>2.5.</b>
Escape sequences
</a>
</li>
<li class="chapter " data-level="2.6" data-path="begin_end.html">
<a href="./begin_end.html">
<i class="fa fa-check"></i>
<b>2.6.</b>
BEGIN, END
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="3" data-path="builtin_variables.html">
<a href="./builtin_variables.html">
<i class="fa fa-check"></i>
<b>3.</b>
Built-in Variables
</a>
</li>
<li class="chapter " data-level="4" data-path="record_sep.html">
<a href="./record_sep.html">
<i class="fa fa-check"></i>
<b>4.</b>
Record 분리
</a>
</li>
<li class="chapter " data-level="5" data-path="field_sep.html">
<a href="./field_sep.html">
<i class="fa fa-check"></i>
<b>5.</b>
Field 분리
</a>
</li>
<li class="chapter " data-level="6" data-path="zero_one.html">
<a href="./zero_one.html">
<i class="fa fa-check"></i>
<b>6.</b>
$0=$0, $1=$1
</a>
</li>
<li class="chapter " data-level="7" data-path="redirection.html">
<a href="./redirection.html">
<i class="fa fa-check"></i>
<b>7.</b>
Redirection
</a>
</li>
<li class="chapter " data-level="8" data-path="getline.html">
<a href="./getline.html">
<i class="fa fa-check"></i>
<b>8.</b>
getline
</a>
</li>
<li class="chapter " data-level="9" data-path="arrays.html">
<a href="./arrays.html">
<i class="fa fa-check"></i>
<b>9.</b>
Arrays
</a>
<ul class="articles">
<li class="chapter " data-level="9.1" data-path="sort.html">
<a href="./sort.html">
<i class="fa fa-check"></i>
<b>9.1.</b>
Sort
</a>
</li>
<li class="chapter " data-level="9.2" data-path="GROUP_BY.html">
<a href="./GROUP_BY.html">
<i class="fa fa-check"></i>
<b>9.2.</b>
GROUP BY
</a>
</li>
<li class="chapter " data-level="9.3" data-path="JOIN.html">
<a href="./JOIN.html">
<i class="fa fa-check"></i>
<b>9.3.</b>
JOIN
</a>
</li>
<li class="chapter " data-level="9.4" data-path="subquery.html">
<a href="./subquery.html">
<i class="fa fa-check"></i>
<b>9.4.</b>
Subquery
</a>
</li>
<li class="chapter " data-level="9.5" data-path="index2.html">
<a href="./index2.html">
<i class="fa fa-check"></i>
<b>9.5.</b>
Index
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="10" data-path="control_statements.html">
<a href="./control_statements.html">
<i class="fa fa-check"></i>
<b>10.</b>
Control Statements
</a>
</li>
<li class="chapter " data-level="11" data-path="operators.html">
<a href="./operators.html">
<i class="fa fa-check"></i>
<b>11.</b>
Operators
</a>
</li>
<li class="chapter " data-level="12" data-path="builtin_functions.html">
<a href="./builtin_functions.html">
<i class="fa fa-check"></i>
<b>12.</b>
Built-in Functions
</a>
<ul class="articles">
<li class="chapter " data-level="12.1" data-path="builtin/numeric.html">
<a href="./builtin/numeric.html">
<i class="fa fa-check"></i>
<b>12.1.</b>
Numeric Functions
</a>
</li>
<li class="chapter " data-level="12.2" data-path="builtin/string.html">
<a href="./builtin/string.html">
<i class="fa fa-check"></i>
<b>12.2.</b>
String Functions
</a>
</li>
<li class="chapter " data-level="12.3" data-path="builtin/io.html">
<a href="./builtin/io.html">
<i class="fa fa-check"></i>
<b>12.3.</b>
I/O Functions
</a>
</li>
<li class="chapter " data-level="12.4" data-path="builtin/time.html">
<a href="./builtin/time.html">
<i class="fa fa-check"></i>
<b>12.4.</b>
Time Functions
</a>
</li>
<li class="chapter " data-level="12.5" data-path="builtin/bitwise.html">
<a href="./builtin/bitwise.html">
<i class="fa fa-check"></i>
<b>12.5.</b>
Bitwise Functions
</a>
</li>
<li class="chapter " data-level="12.6" data-path="builtin/type.html">
<a href="./builtin/type.html">
<i class="fa fa-check"></i>
<b>12.6.</b>
Type Functions
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="13" data-path="extensions.html">
<a href="./extensions.html">
<i class="fa fa-check"></i>
<b>13.</b>
Dynamic Extensions
</a>
<ul class="articles">
<li class="chapter " data-level="13.1" data-path="example.html">
<a href="./example.html">
<i class="fa fa-check"></i>
<b>13.1.</b>
예제
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="14" data-path="tcp_ip.html">
<a href="./tcp_ip.html">
<i class="fa fa-check"></i>
<b>14.</b>
TCP/IP Internetworking
</a>
</li>
<li class="chapter active" data-level="15" data-path="command_line_options.html">
<a href="./command_line_options.html">
<i class="fa fa-check"></i>
<b>15.</b>
Command-line options
</a>
</li>
<li class="chapter " data-level="16" data-path="debugging.html">
<a href="./debugging.html">
<i class="fa fa-check"></i>
<b>16.</b>
Debugging
</a>
</li>
<li class="chapter " data-level="17" data-path="tips.html">
<a href="./tips.html">
<i class="fa fa-check"></i>
<b>17.</b>
Tips
</a>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Actions Left -->
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="./" >Introduction</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<section class="normal" id="section-">
<h1 id="commandline-options">Command-line options</h1>
<h4 id="f-progfile-file-progfile">-f progfile, --file progfile</h4>
<p>메인 실행파일을 지정할 때 사용합니다.
이 옵션을 사용한 상태에서 명령행 상에서 quotes 을 이용해 코드를 작성하려면 <code>-e</code> 옵션을 사용해야 합니다.
여러번 사용할 수 있고 <code>-</code> 문자를 파일명에 사용할 경우 <code>stdin</code> 에서 입력을 받습니다.</p>
<h4 id="f-fs-fieldseparator-fs">-F fs, --field-separator fs</h4>
<p><code>FS</code> 값을 설정합니다.</p>
<h4 id="v-varval-assign-varval">-v var=val, --assign var=val</h4>
<p>awk 에 변수값을 전달할 때 사용합니다.
여러 개를 사용할 수 있고 설정된 값은 BEGIN 블록에서도 사용할 수 있습니다.</p>
<h4 id="b-charactersasbytes">-b, --characters-as-bytes</h4>
<p>awk 는 기본적으로 텍스트 데이터를 다루는 프로그램이기 때문에
내부적으로 locale 에 따라서 multibyte characters 를 wide characters 로 converting 합니다.
하지만 이 옵션을 사용하면 데이터를 읽어 들일 때나, 프린트문으로 출력할 때
converting 없이 무조건 single-byte characters 로 취급합니다.
다시 말해서 원본 데이터에 아무런 손도 대지 않는 것입니다.</p>
<h4 id="dfile-dumpvariablesfile">-d[file], --dump-variables[=file]</h4>
<p>global 변수를 dump 해볼 때 사용합니다.
변수 type 과 value 가 표시되는데
함수 내에서 local 변수로 사용되야 될 변수가 실수로 global 변수가 되지 않았는지
살펴보는 용도로 활용할 수 있습니다.
옵션 인수인 파일명은 공백 없이 붙여야 되고 파일명을 제공하지 않을 경우는 awkvars.out 에 저장됩니다.</p>
<h4 id="d-debug">-D, --debug</h4>
<p>awk 스크립트 파일을 디버깅할 때 사용합니다.</p>
<h4 id="e-programtext-source-programtext">-e 'program-text', --source 'program-text'</h4>
<p>명령행 상에서 quotes 을 이용해 직접 코드를 작성할 때 사용합니다.
보통은 이 옵션 없이도 코드를 작성할 수 있지만
<code>-f</code> 옵션을 이용해 메인 실행파일을 지정할 경우에는 이 옵션을 사용해야 됩니다.
<code>-i</code>, <code>-f</code> 옵션은 명령행 상에 위치한 순서에 따라 실행되고 <code>-e</code> 옵션으로
작성한 코드는 마지막에 실행됩니다.</p>
<h4 id="e-file-exec-file">-E file, --exec file</h4>
<p>이것은 awk 스크립트를 CGI 프로그램으로 사용할 경우 보안을 위한 옵션입니다.
기본적인 기능은 <code>-f</code> 옵션과 같지만 악의적인 사용자가 옵션 이나 변수값 전달,
<code>-e</code> 옵션을 이용한 소스코드 전달을 하지 못하게 합니다.
따라서 명령 라인에 사용된 인수는 처리되지 않고 스트링으로만 전달됩니다.</p>
<p><code>awk -f</code> 는 <code>-v</code> 를 awk 옵션으로 인식해 오류가 발생하지만
<code>awk -E</code> 는 그대로 파일명으로 전달된다.</p>
<pre><code class="lang-bash">$ cat test.sh $ cat test.sh
<span class="hljs-comment">#!/usr/bin/awk -E #!/usr/bin/awk -f</span>
BEGINFILE { BEGINFILE {
<span class="hljs-built_in">print</span> FILENAME <span class="hljs-built_in">print</span> FILENAME
nextfile nextfile
} }
$ ./test.sh -v hello $ ./test.sh -v hello <span class="hljs-comment"># 오류</span>
-v awk: <span class="hljs-string">'hello'</span> argument to <span class="hljs-string">'-v'</span> not <span class="hljs-keyword">in</span> <span class="hljs-string">'var=value'</span> form
hello . . .
</code></pre>
<p>만약에 옵션을 추가하려면 다음과 같이 <code>-E</code> 옵션 전에 위치시키면 ARG 에 포함되지 않습니다.</p>
<pre><code class="lang-bash">$ cat test.sh
<span class="hljs-comment">#!/usr/bin/env -S gawk -v AA=100 -E</span>
BEGIN {
<span class="hljs-built_in">print</span> <span class="hljs-string">"ARGC : "</span> ARGC
<span class="hljs-built_in">print</span> <span class="hljs-string">"ARGV[0] : "</span> ARGV[<span class="hljs-number">0</span>]
<span class="hljs-built_in">print</span> <span class="hljs-string">"ARGV[1] : "</span> ARGV[<span class="hljs-number">1</span>]
<span class="hljs-built_in">print</span> <span class="hljs-string">"AA : "</span> AA
}
$ ./test.sh
ARGC : <span class="hljs-number">1</span>
ARGV[<span class="hljs-number">0</span>] : gawk
ARGV[<span class="hljs-number">1</span>] :
AA : <span class="hljs-number">100</span>
</code></pre>
<h4 id="g-genpot">-g, --gen-pot</h4>
<p>서비스 메시지의 국제화를 위한 기능으로 소스 코드에서 특정 형식으로 작성된 스트링 상수를
추출하여 pot 파일 ( GNU gettext portable object template file ) 을 생성합니다.</p>
<p><a href="https://www.gnu.org/software/gawk/manual/html_node/I18N-Example.html" target="_blank">https://www.gnu.org/software/gawk/manual/html_node/I18N-Example.html</a></p>
<h4 id="i-includefile-include-includefile">-i includefile, --include includefile</h4>
<p>라이브러리 파일을 include 하기 위한 것으로 <code>-f</code> 옵션과 다르게 메인 실행파일로 인식하지 않습니다.
한번 파일이 로드되면 중복 사용될 경우 다시 로드되지 않습니다.
<code>-f</code> 옵션의 경우는 동일한 파일이 중복 사용될 경우 매번 실행됩니다.
<code>@include</code> 키워드와 같은 기능을 합니다.</p>
<h4 id="l-library-load-library">-l library, --load library</h4>
<p>확장 모듈을 로드해 사용합니다. <code>AWKLIBPATH</code> 환경 변수에서 모듈을 찾습니다.</p>
<h4 id="lfatalinvalid-lintfatalinvalid">-L[fatal|invalid], --lint[=fatal|invalid]</h4>
<p>이 옵션을 사용하면 오류가 의심되는 코드에 대해 다양한 메시지를 출력합니다.</p>
<h4 id="m-bignum">-M, --bignum</h4>
<p>cpu 에서 하드웨어 적으로 제공하는 64bit fixed-precision arithmetic 대신에
소프트웨어 라이브러리를 이용한
arbitrary-precision arithmetic ( 또는 bignum arithmetic, multiple precision arithmetic, infinite-precision arithmetic ) 연산을 합니다.
사용 가능한 정밀도의 한계는 컴퓨터 메모리 크기에 제한을 받을 뿐입니다.</p>
<blockquote>
<p>연산 결과 값이 53 bits 를 넘을 경우 이 옵션을 설정해야 합니다.</p>
</blockquote>
<pre><code class="lang-bash"><span class="hljs-comment"># 72057594037927935 (0xFFFFFFFFFFFFFF) 는 7 bytes 으로 56 bits 값</span>
$ awk <span class="hljs-string">'BEGIN { print 72057594037927935 + 1}'</span>
<span class="hljs-number">72057594037927936</span>
$ awk <span class="hljs-string">'BEGIN { print 72057594037927935 + 2}'</span>
<span class="hljs-number">72057594037927936</span> <span class="hljs-comment"># 위와 동일한 값</span>
$ awk <span class="hljs-string">'BEGIN { print 72057594037927935 + 3}'</span>
<span class="hljs-number">72057594037927936</span> <span class="hljs-comment"># 위와 동일한 값</span>
$ awk <span class="hljs-string">'BEGIN { print 72057594037927935 + 4}'</span>
<span class="hljs-number">72057594037927936</span> <span class="hljs-comment"># 위와 동일한 값</span>
<span class="hljs-comment"># '-M' 옵션을 사용해야 정확한 값이 출력된다.</span>
$ awk -M <span class="hljs-string">'BEGIN { print 72057594037927935 + 4}'</span>
<span class="hljs-number">72057594037927939</span>
</code></pre>
<p>factorial 100 을 계산하는 것인데 <code>-M</code> 옵션을 사용해야 값이 정확해진다.</p>
<pre><code class="lang-bash">$ awk <span class="hljs-string">'BEGIN { print fac(100) }
function fac (n, accum) {
accum = 1
while (n >= 2) accum *= n--
return accum
}'</span>
<span class="hljs-number">9332621544394417535430725413964319024712932813229586249193</span>...........
$ awk -M <span class="hljs-string">'BEGIN { print fac(100) } # -M 옵션 사용
function fac (n, accum) {
accum = 1
while (n >= 2) accum *= n--
return accum
}'</span>
<span class="hljs-number">9332621544394415268169923885626670049071596826438162146859</span>..........
</code></pre>
<p>10,000 번째 피보나치수 구하기</p>
<pre><code class="lang-bash">$ awk <span class="hljs-string">'BEGIN { print fibo(10000) }
function fibo (n, a, b, i) {
a = b = 1;
for (i = 3; i <= n; i++) {
c = a + b;
a = b;
b = c;
}
return b;
}'</span>
+inf <span class="hljs-comment"># +inf</span>
$ awk -M <span class="hljs-string">'BEGIN { print fibo(10000) } # -M 옵션 사용
function fibo (n, a, b, i) {
a = b = 1;
for (i = 3; i <= n; i++) {
c = a + b;
a = b;
b = c;
}
return b;
}'</span>
<span class="hljs-number">3364476487643178326662161200510754331030214846068</span>..........
</code></pre>
<h4 id="n-uselcnumeric">-N, --use-lc-numeric</h4>
<p>locale 에 따라서 decimal and thousands separators 문자가 다를 수 있는데 이 옵션을 사용하면
숫자 데이터를 locale 에 따라 해석하여 읽어 들입니다.</p>
<p><a href="https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html" target="_blank">https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html</a></p>
<h4 id="ofile-prettyprintfile">-o[file], --pretty-print[=file]</h4>
<p>코드를 보기 좋게 포멧하여 출력합니다.
dedugging 하기 위해 파일을 생성할 때 사용할 수 있습니다.
한가지 참고할 것은 스크립트가 실행이 되면서 결과가 출력된다는 점입니다.
옵션 인수인 파일명은 공백 없이 붙여야 되고 파일명을 제공하지 않을 경우는 awkprof.out 에 저장됩니다.</p>
<h4 id="o-optimize">-O, --optimize</h4>
<p>코드 최적화와 관련된 옵션인데 현재는 단순히 constant folding 만 포함됩니다.</p>
<h4 id="pfile-profilefile">-p[file], --profile[=file]</h4>
<p>awk 는 profiling 기능도 제공합니다.
포함되는 정보는 execution counts for each statement 와 function call counts for each function 입니다.
옵션 인수인 파일명은 공백 없이 붙여야 되고 파일명을 제공하지 않을 경우는 awkprof.out 에 저장됩니다.</p>
<p><a href="https://www.gnu.org/software/gawk/manual/html_node/Profiling.html" target="_blank">https://www.gnu.org/software/gawk/manual/html_node/Profiling.html</a></p>
<h4 id="p-posix">-P, --posix</h4>
<p>POSIX mode 로 동작합니다. 다시 말해서 모든 gawk 확장 기능이 disable 됩니다.</p>
<h4 id="s-sandbox">-S, --sandbox</h4>
<p>system() 함수의 사용, getline, 프린트 함수를 이용한 redirection, 확장 모듈 사용이 금지됩니다.
다시 말해서 입력에 사용되는 데이터 파일 외에는 시스템에 접근하지 못하게 하는 것입니다.</p>
</section>
</div>
</div>
</div>
<a href="./tcp_ip.html" class="navigation navigation-prev " aria-label="Previous page: TCP/IP Internetworking"><i class="fa fa-angle-left"></i></a>
<a href="./debugging.html" class="navigation navigation-next " aria-label="Next page: Debugging"><i class="fa fa-angle-right"></i></a>
</div>
</div>
<script src="gitbook/app.js"></script>
<script src="gitbook/plugins/gitbook-plugin-search/lunr.min.js"></script>
<script src="gitbook/plugins/gitbook-plugin-search/search.js"></script>
<script src="gitbook/plugins/gitbook-plugin-sharing/buttons.js"></script>
<script src="gitbook/plugins/gitbook-plugin-fontsettings/buttons.js"></script>
<script>
require(["gitbook"], function(gitbook) {
var config = {"highlight":{},"search":{"maxIndexSize":1000000},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2}};
gitbook.start(config);
});
</script>
</body>
</html>