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 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
|
=head1 NAME
runawk - wrapper for AWK interpreter
=head1 MODULES
B<runawk> provides dozens of modules.
Below is the documentation for them.
=head2 CR_in.awk
As the name of this module says (_in suffix) this module reads and
optionally changes input lines.
Carriage-Return symbol at the end of input lines is removed.
This symbol usually appears in Windows text files.
If you want to adapt your script to accept windows files on input,
just put
#use "CR_in.awk"
in the very beginning of your script.
=head2 abort.awk
=over 2
=item I<abort (MSG, [EXIT_STATUS])>
print MSG to stderr and exits program with
EXIT_STATUS. EXIT_STATUS defaults to 1.
=back
=head2 abs.awk
=over 2
=item I<abs (V)>
return absolute value of V.
=back
=head2 alt_assert.awk
=over 2
=item I<assert (CONDITION, MSG, STATUS)>
print an
error message MSG to standard error and terminates
the program with STATUS exit code if CONDITION is false.
=back
=head2 alt_getopt.awk
=over 2
=item I<getopt(SHORT_OPTS)>
This function processes ARGV array and
returns TRUE if option is received,
received option is saved in 'optopt' variable, option argument (if any)
is saved in 'optarg' variable. Long options (like --help or
--long-option) present in GNU libc and BSD systems are also supported.
NOTE: alt_getopt.awk module follows rules
from SUS/POSIX "Utility Syntax Guidelines"
=back
=head2 alt_join.awk
=over 2
=item I<join_keys (HASH, SEP)>
return string consisting of all keys from HASH separated by SEP.
=item I<join_values (HASH, SEP)>
return string consisting of all values from HASH separated by SEP.
=item I<join_by_numkeys (ARRAY, SEP [, START [, END]])>
return string consisting of all values from ARRAY
separated by SEP. Indices from START (default: 1) to END
(default: +inf) are analysed. Collecting values is stopped
on index absent in ARRAY.
=back
=head2 backslash_in.awk
As the name of this module (_in suffix) says this module
reads and optionally changes input lines.
Backslash character at the end of line is treated as a sign
that current line is continued on the next one.
Example is below.
Input:
a b c\
d e f g
a
b
e\
f
What your program using backslash_in.awk will obtain:
a b cd e f g
a
b
e f
=head2 basename.awk
=over 2
=item I<basename (PATH)>
return filename portion of the PATH
(the same as I<dirname(3)>)
=back
See example/demo_basename for the sample of usage
=head2 braceexpand.awk
=over 2
=item I<braceexp(STRING)>
shell-like brace expansion.
For example:
print braceexpand("ab{,22{,7,8}}z{8,9}")
-| abz8 abz9 ab22z8 ab22z9 ab227z8 ab227z9 ab228z8 ab228z9
=back
=head2 dirname.awk
=over 2
=item I<dirname (PATH)>
return dirname portion of the PATH
(the same as I<dirname(3)>)
=back
See example/demo_dirname for the sample of usage
=head2 embed_str.awk
This module reads a program's file, find .begin-str/.end-str pairs
and reads lines between them.
I<EMBED_STR> - Associative array with string index
Example:
Input:
.begin-str mymsg
Line1
Line2
.end-str
Output (result)
EMBED_STR ["mymsg"]="Line1\nLine2"
See example/demo_embed_str for the sample of usage
=head2 exitnow.awk
=over 2
=item I<exitnow (STATUS)>
similar to the statement 'exit' but do not run
END sections.
=back
=head2 fieldwidth.awk
By default AWK interpreter splits input lines into tokens according
to regular expression that defines "spaces" between them using
special variable FS. Sometimes it is useful to define a fixed-size
fields for tokens. This is what this module is for. The
functionality of fieldwidths.awk is very close to GNU awk's
FIELDWIDTHS variable.
=over 2
=item I<fieldwidths(STRING, FW)>
extracts substrings from STRING according to FW
from the left to the right and assigns $1, $2 etc. and NF
variable. FW is a space separated list of numbers that specify
fields widths.
=item I<fieldwidths0(FW)>
Does the the same as `fieldwidths' function but splits $0 instead.
=item I<FW>
global variable. If it is set to non-empty string, all input
lines are split automatically and the value of variable FS is
ignored in this case.
=back
See example/demo_fieldwidths for the sample of usage
=head2 ftrans_in.awk
beginfile() function provided by user is called before file reading
endfile() function provided by user is called after file reading
=head2 glob.awk
=over 2
=item I<glob2ere (PATTERN)>
convert glob PATTERN
(http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_13)
to equivalent extended regular expression
(http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04)
=back
=head2 has_prefix.awk
=over 2
=item I<has_prefix (STRING, PREFIX)>
return TRUE if STRING begins with PREFIX
=back
See example/demo_has_prefix for the sample of usage
=head2 has_suffix.awk
=over 2
=item I<has_suffix(STRING, SUFFIX)>
return TRUE if STRING ends with SUFFIX
=back
See example/demo_has_suffix for the sample of usage
=head2 heapsort.awk
=over 2
=item I<heapsort (src_array, dest_remap, start, end)>
The content of `src_array' is sorted using awk's rules for
comparing values. Values with indices in range [start, end] are
sorted. `src_array' array is not changed.
Instead dest_remap array is generated such that
Result:
src_array [dest_remap [start]] <=
<= src_array [dest_remap [start+1]] <=
<= src_array [dest_remap [start+2]] <= ... <=
<= src_array [dest_remap [end]]
`heapsort' algorithm is used.
Examples: see demo_heapsort and demo_heapsort2 executables.
=item I<heapsort_values (src_hash, dest_remap)>
The same as `heapsort' described above, but hash values are sorted.
Result:
src_array [dest_remap [1]] <=
<= src_array [dest_remap [2]] <=
<= src_array [dest_remap [3]] <= ... <=
<= src_array [dest_remap [count]]
`count', a number of elements in `src_hash', is a return value.
Examples: see demo_heapsort3 executable.
=item I<heapsort_indices (src_hash, dest_remap)>
The same as `heapsort' described above, but hash indices are sorted.
Result:
dest_remap [1] <=
<= dest_remap [2] <=
<= dest_remap [3] <= ... <=
<= dest_remap [count]
`count', a number of elements in `src_hash', is a return value.
Examples: demo_ini
=item I<heapsort_fields (dest_remap, [start [, end [, strnum]]])>
The same as function "heapsort0" but $1, $2... array is sorted.
Note that $1, $2... are not changed, but dest_remap array is filled in!
The variable "start" default to 1, "end" -- to NF.
If "strnum" is set to 1, values are forcibly compared as strings.
If "strnum" is set to 2, values are forcibly compared as numbers.
=item I<heapsort0 ([start [, end [, strnum]]])>
The same as "heapsort_fields" but $1, $2... are changed.
=back
=head2 ini.awk
This module provides functions for manipulating .ini files.
See example/demo_ini for the sample of use.
=over 2
=item I<read_inifile(FILENAME, RESULT [, SEPARATOR])>
Reads .ini file FILENAME and fills array RESULT, e.g.
RESULT [<section5><SEPARATOR><name6>] = <value5.6> etc.
If SEPARATOR is not specified, `.' symbols is used by default.
=back
Features:
- spaces are allowed everywhere, i.e. at the beginning and end of
line, around `=' separator. THEY ARE STRIPPED!
- comment lines start with `;' or `#' sign. Comment lines are ignored.
- values can be surrounded by signle or double quote. In this case
spaces are presenrved, otherwise they are removed from
beginning and at the end of line and replaced with single space
in the middle of the line.
- Escape character are not supported (yet?).
=head2 init_getopt.awk
Initialization step for power_getopt.awk module. In some cases it
makes sense to process options in a while() loop. This module
allows doing this. See the documentation about how options are
initialized in power_getopt.awk module.
=over 2
=item I<print_help ()>
display help message.
=back
=head2 io.awk
This module provides a number of IO functions.
=over 2
=item I<is_file(FILENAME)>
returns 1 if the specified FILENAME
is a regular file or 0 otherwise.
=item I<is_socket(FILENAME)>
returns 1 if the specified FILENAME
is a socket or 0 otherwise.
=item I<is_dir(FILENAME)>
returns 1 if the specified FILENAME
is a dir or 0 otherwise.
=item I<is_exec(FILENAME)>
returns 1 if the specified FILENAME
is executable or 0 otherwise.
=item I<is_fifo(FILENAME)>
returns 1 if the specified FILENAME
is a FIFO or 0 otherwise.
=item I<is_blockdev(FILENAME)>
returns 1 if the specified FILENAME
is a block special file or 0 otherwise.
=item I<is_chardev(FILENAME)>
returns 1 if the specified FILENAME
is a character special file or 0 otherwise.
=item I<is_symlink(FILENAME)>
returns 1 if the specified FILENAME
is a symlink or 0 otherwise.
=item I<file_size(FILENAME, USE_STAT_NOT_LSTAT)>
returns the size of the specified FILENAME.
If USE_STAT_NOT_LSTAT is True, stat(2) is used instead of lstat(2).
Return value:
-2 if file doesn't exist
-1 if file is not a regular file
filesize otherwise
=item I<file_type(FILENAME, USE_STAT_NOT_LSTAT)>
returns a single letter that corrspond to the file
type. If USE_STAT_NOT_LSTAT is True, stat(2) is used instead of lstat(2).
Return value:
- -- regular file
d -- directory
c -- character device
b -- block device
p -- FIFO
l -- symlink
s -- socket
=back
See example/demo_io for the sample of usage
=head2 isnum.awk
=over 2
=item I<isnum (NUM)>
returns 1 if an argument is a number
=back
=head2 match_br.awk
=over 2
=item I<match_br(STRING, BR_OPEN, BR_CLOSE)>
return start position (or zero if failure) of the substring
surrounded by balanced (), [], {} or similar characters
Also sets RSTART and RLENGTH variables just like
the standard 'match' function does
For example:
print match_br("A (B (), C(D,C,F (), 123))", "(", ")")
print RSTART, RLENGTH
-| 3
-| 3
-| 24
=back
=head2 max.awk
=over 2
=item I<max, max3, max4, max5>
maximum functions
=item I<max_key(HASH, DFLT)>
returns a maximum key in HASH or DFLT if it is empty
=item I<max_value(HASH, DFLT)>
returns a maximum value in HASH or DFLT if it is empty
=item I<key_of_max_value(HASH, DFLT)>
returns A KEY OF maximum value in HASH or DFLT if it is empty
=back
=head2 min.awk
=over 2
=item I<min, min3, min4, min5>
minimum functions
=item I<min_key(HASH, DFLT)>
returns a minimum key in HASH or DFLT if it is empty
=item I<min_value(HASH, DFLT)>
returns a minimum value in HASH or DFLT if it is empty
=item I<key_of_min_value(HASH, DFLT)>
returns A KEY OF minimum value in HASH or DFLT if it is empty
=back
=head2 modinfo.awk
This module provides the following variables
=over 2
=item I<MODC>
A number of modules (-f <filename>) passed to an awk interpreter
=item I<MODV>
Array with [0..MODC) indexes of those modules
=item I<MODMAIN>
Path to the main module, i.e. program filename
=back
See example/demo_modinfo for the sample of usage
=head2 multisub.awk
=over 2
=item I<multisub(STRING, SUBST_REPLS[, KEEP])>
is a substitution function. It searches for
a list of substrings, specified in SUBST_REPL
in a left-most longest order and (if found) replaces
found fragments with appropriate replacement.
SUBST_REPL format: "SUBSTRING1:REPLACEMENT1 SUBSTRING2:REPLACEMENT2...".
Three spaces separate substring:replacement pairs from each other.
If KEEP is specified and some REPLACEMENT(N) is equal to it, then
appropriate SUBSTRING(N) is treated as a regular expression
and matched text is kept as is, i.e. not changed.
For example:
print multisub("ABBABBBBBBAAB", "ABB:c BBA:d AB:e")
|- ccBBde
=back
=head2 pow.awk
=over 2
=item I<pow (X, Y)>
returns the value of X to the exponent Y
=back
=head2 power_getopt.awk
power_getopt.awk module provides a very easy way to add options
to AWK application and follows rules from
SUS/POSIX "Utility Syntax Guidelines"
power_getopt.awk analyses '.begin-str help/.end-str' section in
AWK program (main module), and processes options specified there.
The following strings mean options:
-X single letter option
--XXX long option
-X|--XXX single letter option with long synonym
=X single letter option with argument
=-XXX long option with argument
=X|--XXX single letter option and long synonym with argument
If --help option was applied, usage information is printed
(lines between ".begin-str help" and ".end-str") replacing leading
`=' character with `-'.
=over 2
=item I<getarg(OPT, DEFAULT)>
returns either 1 (option OPT was applied) or 0 (OPT was not
applied) for options not accepting the argument, and either
specified value or DEFAULT for options accepting the argument.
See example/demo_power_getopt for the sample of usage
=back
=head2 quicksort.awk
=over 2
=item I<quicksort (src_array, dest_remap, start, end)>
The content of `src_array' is sorted using awk's rules for
comparing values. Values with indices in range [start, end] are
sorted. `src_array' array is not changed.
Instead dest_remap array is generated such that
Result:
src_array [dest_remap [start]] <=
<= src_array [dest_remap [start+1]] <=
<= src_array [dest_remap [start+2]] <= ... <=
<= src_array [dest_remap [end]]
`quicksort' algorithm is used.
Examples: see demo_quicksort and demo_quicksort2 executables
=item I<quicksort_values (src_hash, dest_remap)>
The same as `quicksort' described above, but hash values are sorted.
Result:
src_hash [dest_remap [1]] <=
<= src_hash [dest_remap [2]] <=
<= src_hash [dest_remap [3]] <= ... <=
<= src_hash [dest_remap [count]]
`count', a number of elements in `src_hash', is a return value.
Examples: see demo_quicksort* executables.
=item I<quicksort_indices (src_hash, dest_remap)>
The same as `quicksort' described above, but hash indices are sorted.
Result:
dest_remap [1] <=
<= dest_remap [2] <=
<= dest_remap [3] <= ... <=
<= dest_remap [count]
`count', a number of elements in `src_hash', is a return value.
=back
=head2 readfile.awk
=over 2
=item I<readfile(FILENAME)>
read entire file and return its content as a string
=back
See example/demo_readfile for the sample of usage
=head2 runcmd.awk
=over 2
=item I<runcmd1 (CMD, OPTS, FILE)>
wrapper for system() function
that runs a command CMD with options OPTS and one filename FILE.
Unlike system(CMD " " OPTS " " FILE) the function runcmd1 handles
correctly FILE containing spaces, single quote, double quote,
tilde etc.
=item I<xruncmd1 (FILE)>
safe wrapper for 'runcmd1'.
awk exits with error if runcmd1() function failed.
=back
=head2 shquote.awk
=over 2
=item I<shquote(str)>
transforms the string `str' by adding shell escape and
quoting characters to include it to the system() and popen()
functions as an argument, so that the arguments will have the
correct values after being evaluated by the shell.
For example:
print shquote("file name.txt")
|- 'file name.txt'
print shquote("'")
|- \'
print shquote("Peter's")
|- 'Peter'\''s'
print shquote("*&;<>#~")
|- '*&;<>#~'
=back
This module was inspired by NetBSD shquote(3)
http://netbsd.gw.com/cgi-bin/man-cgi?shquote+3+NetBSD-current
and shquote(1) by Alan Barrett
http://ftp.sunet.se/pub/os/NetBSD/misc/apb/shquote.20080906/
=head2 sort.awk
=over 2
=item I<sort (src, dest_remap, start, end)>
Call either heapsort function from heapsort.awk (if
RUNAWK_SORTTYPE environment variable is "heapsort") or quicksort
from quicksort.awk (if RUNAWK_SORTTYPE is "quicksort").
Sorttype defaults to "heapsort".
=item I<sort_values (src, dest_remap)>
Call either heapsort_values function from heapsort.awk (if
RUNAWK_SORTTYPE environment variable is "heapsort") or
quicksort_values from quicksort.awk (if RUNAWK_SORTTYPE is
"quicksort"). Sorttype defaults to "heapsort".
=item I<sort_indices (src, dest_remap)>
Call either heapsort_indices function from heapsort.awk (if
RUNAWK_SORTTYPE environment variable is "heapsort") or
quicksort_indices from quicksort.awk (if RUNAWK_SORTTYPE is
"quicksort"). Sorttype defaults to "heapsort".
=back
=head2 str2regexp.awk
=over 2
=item I<str2regex(STRING)>
returns a regular expression that matches given STRING
=back
For example:
print str2regexp("all special symbols: ^$(){}[].*+?|\\")
-| all special symbols: [^][$][(][)][{][}][[]\][.][*][+][?][|]\\
=head2 tmpfile.awk
This module provides a function `tmpfile' for generating temporary
filenames. All these filenames are under temporary directory created
(if necessary) by runawk(1) which is removed automatically during
normal exit or when runawk(1) reveives SIGINT, SIGQUIT, SIGTERM,
SIGHUP or SIGPIPE.
=over 2
=item I<tmpfile()>
returns a temporary file name.
=item I<runawk_tmpdir>
global variable that keeps tempdir created by runawk -t
=back
See example/demo_tmpfile for the sample of usage
=head2 tokenre.awk
By default AWK splits input lines into tokens according to regular
expression that defines "spaces" between tokens using special
variable FS. In many situations it is more useful to define regular
expressions for tokens themselves. This is what this module does.
=over 2
=item I<tokenre(STRING, REGEXP)>
extracts substrings from STRING
according to REGEXP from the left to the right and assigns $1, $2
etc. and NF variable.
=item I<tokenre0(REGEXP)>
Does the the same as `tokenre' but splits $0 instead.
=item I<splitre(STRING, ARR, REGEXP)>
The same as `tokenre' but ARR[1], ARR[2]... are assigned.
A number of extracted tokens is a return value.
=item I<TRE>
global variable. If it is set to non-empty string, all input
lines are split automatically.
=back
=head2 trim.awk
=over 2
=item I<trim_l(STRING)>
Removes leading Tab and Space characters from STRING and returns
the result.
=item I<trim_r(STRING)>
Removes Tab and Space characters at the end of STRING and returns
the result.
=item I<trim_c(STRING, REPL)>
Replaces sequences of Tab and Space characters in STRING with REPL
and returns the result. If REPL is not specified, it defaults to
single Space character.
=item I<trim_lr(STRING)>
Equal to trim_l(trim_r(STRING))
=item I<trim_lrc(STRING, REPL)>
Equal to trim_l(trim_r(trim_c(STRING, REPL)))
=back
See example/demo_trim for the sample of usage
=head2 trim_in.awk
As the name of this module says (_in suffix) this module reads and
potentially changes input lines.
Leading, ending spaces and/or spaces in the middle of input lines
are removed depending on TRIM variable.
TRIM values:
"l" - remove leading space characters
"r" - remove ending space characters
"c" - remove extra space characters in the middle of input lines
"lr" - See l and r
"lrc" - See l, r and c
"lc" - See l and c
"cr" - See c and r
By default TRIM variable is set to "lr". TRIM set to a single space
character means no trimming.
=head2 xclose.awk
=over 2
=item I<xclose(FILE)>
safe wrapper for 'close'.
awk exits with error if close() function failed.
=back
=head2 xgetline.awk
=over 2
=item I<xgetline0([FILE])>
Safe analog to 'getline < FILE' or 'getline' (if no FILE is specified).
0 at the end means that input line is assigned to $0.
=item I<xgetline([FILE])>
Safe analog to 'getline __input < FILE' and 'getline __input'
(if no FILE is specified)
=back
In both cases "safe" means that returned value is analysed and
if it is less than zero (file reading error happens) program will
be terminated emmidiately with appropriate error message sent to stderr.
Both functions return zero if end of file is reached or non-zero otherwise.
Example:
while (xgetline("/etc/passwd")){
print "user: " __input
}
=head2 xsystem.awk
=over 2
=item I<xsystem(FILE)>
safe wrapper for 'system'.
awk exits with error if system() function failed.
=back
=head2 ord.awk
=over 2
=item I<ord (CHAR)>
return numeral code of CHAR
=item I<chr (CODE)>
return symbol from the CODE
=back
=head1 AUTHOR
Copyright (c) 2007-2014 Aleksey Cheusov <vle@gmx.net>
=head1 BUGS/FEEDBACK
Please send any comments, questions, bug reports etc. to me by e-mail
or register them at sourceforge project home. Feature requests are
also welcomed.
=head1 HOME
L<http://sourceforge.net/projects/runawk/>
=head1 SEE ALSO
L<awk(1)>
|