home *** CD-ROM | disk | FTP | other *** search
/ Best Objectech Shareware Selections / UNTITLED.iso / boss / refe / soft / 002 / awk1.rev next >
Text File  |  1990-05-22  |  14KB  |  280 lines

  1.  
  2.  
  3.  
  4.           AWK under MS-DOS:  Programming Power for the Masses
  5.              Copyright (c) 1989, 1990, by George A. Theall
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.    When was the last time you were really excited by a computer language?
  13. "Can't remember", you say? Then check out AWK. Whether you use it for data
  14. manipulation or validation, program prototyping, or just general hacking,
  15. this versatile little language will improve your productivity immensely. 
  16.  
  17.  
  18.    Although first developed in 1977, AWK has only recently made its way
  19. into the MS-DOS world. Two companies, Mortice Kern Systems (MKS) and
  20. Polytron/SAGE Software, currently market and support implementations of
  21. AWK for around $100. Additionally, two non-commercial variants - one from
  22. Rob Duff and the other from the GNU Project - are available on some
  23. PC-oriented bbs's. Both offer all the capabilities of their commercial
  24. cousins for just the cost of a phone call. AWK is not a language with
  25. slick keyboard- or screen-handling operations so all three implementations
  26. should work on any machine running MS-DOS. In fact, I have used both MKS
  27. and Duff's AWK with no problems on a DEC Rainbow, a machine not exactly
  28. famous for its PC compatibility! :-)
  29.  
  30.  
  31.    Since the fall of 1988 I've worked with MKS AWK heavily, and I love it!
  32. It's become such an integral part of my toolkit that I don't feel I have
  33. done any work unless I've used AWK at least once each day. As for the
  34. other implementations, my experience is limited. I have, however, made
  35. some comparisons which should be of interest to those trying to choose
  36. among the four. [A summary of my comparisons can be found in the
  37. accompanying file AWK2.REV.] The rest of this discussion focuses not on
  38. any particular implementation but rather on the AWK language itself. 
  39.  
  40.  
  41.    The definitive source of information about AWK is _The AWK Programming
  42. Language_ by Aho, Kernighan, and Weinberger, the language's developers. 
  43. According to this book, AWK is "a pattern-matching language for writing
  44. short programs to perform common data-manipulation tasks". By design AWK
  45. trades off execution speed for a vast reduction in program development
  46. time making it perfect for one-shot tasks. Many common programming chores
  47. - opening files, reading lines, declaring variables, splitting lines into
  48. fields, etc... - are done automatically, so you spend more time on the
  49. basic design of the program. 
  50.  
  51.  
  52.    Like the SORT and MORE utilities supplied with MS-DOS AWK programs are
  53. text filters. That is, they read lines from one or more data files (or
  54. standard input if none are specified), process them in some fashion, and
  55. write them to standard output (normally the screen). With the characters
  56. '<' and '>' on a DOS commandline, it is possible to reassign standard
  57. input and output respectively to devices like the printer or disk files. 
  58. You invoke AWK either by including the program statements, enclosed in
  59. quotes, on the command line:
  60.  
  61.           AWK "program statements" datafiles
  62.  
  63. or, for longer programs, by specifying the name of a file containing those
  64. statements:
  65.  
  66.           AWK -f pgmfile datafiles
  67.  
  68. In both cases, "datafiles" refers to one or more data files to be
  69. processed. Each time AWK is invoked it interprets anew the program
  70. statements. 
  71.  
  72.  
  73.    Again, quoting from the book, "an AWK program is a sequence of patterns
  74. and actions that tell what to look for in the input data and what to do
  75. when it's found". Patterns can be either simple comparisons (like 'Errors
  76. > 9' or 'Name == "John"') or regular expression matches, a powerful way to
  77. work with character strings. [The '*' and '?' characters provide a limited
  78. type of regular expression matching for DOS file names.] Thus, the general
  79. form of an AWK program is:
  80.  
  81.           pattern1 { action1 }
  82.           pattern2 { action2 }
  83.           pattern3 { action3 }
  84.           ...
  85.  
  86. If a pattern is omitted, the action is applied to all records; if no
  87. action is supplied, records satisfying the pattern are simply written to
  88. standard output. Records can satisfy zero, one, or multiple patterns.  Two
  89. patterns with special meaning are BEGIN and END; they are used to specify
  90. actions performed before any records are read and after they've all been
  91. processed, respectively. Actions consist of one or more C-like programming
  92. statements. As AWK reads a data file it tests whether the current record
  93. satisfies any of the patterns; if so, the corresponding actions are taken
  94. sequentially. Comments start with a '#' and run to the end of the line. 
  95.  
  96.  
  97.    AWK reads records from the data files one at a time and splits them
  98. automatically into fields. By default records are separated by linefeeds;
  99. and fields, by blanks and/or tabs. If the situation demands it alternate
  100. record and field separators can be defined easily. The built-in variable
  101. NF represents the number of fields in the current record. The fields
  102. themselves are referenced using the '$' operator. Thus, $2 refers to the
  103. second field, $i to the ith field (for any integer i), and $NF to the last
  104. field in the current record. $0 denotes the entire record. Another
  105. built-in variable is NR; it equals the number of records read so far. So,
  106. for example, if you had a file in which there are supposed to be only four
  107. fields per line you could locate invalid lines with the following AWK
  108. code:
  109.  
  110.           # Print out lines with anything other than 4 fields. 
  111.           NF != 4 {
  112.                print NR, $0
  113.           }
  114.  
  115. Only invalid lines are printed here, preceded by a line number for
  116. identification purposes. By removing the pattern - and hence processing
  117. all lines - you could transform this into a line-numbering program. See
  118. how easy AWK can be?
  119.  
  120.  
  121.    Now imagine you want to redefine your PATH so frequently-used programs
  122. are accessed rapidly. To do this you'll need to locate all the programs on
  123. your disk and decide what's the best ordering of directories in the PATH.
  124. The second part's up to you, but what about the first part? How can you
  125. figure out where all your programs are? You could use DOS's CHKDSK command
  126. to list all the files on the disk, but you'd still be stuck with scanning
  127. through that list for lines ending in ".COM", ".EXE", or ".BAT".  A better
  128. solution would use CHKDSK to generate the list and then AWK to scan it for
  129. you. To do this, create the file ALLPROGS.AWK consisting of the single
  130. pattern:
  131.  
  132.           # Select records for executables only.
  133.           $0 ~ /\.(COM|EXE|BAT)$/
  134.  
  135. and then run it with the following DOS commandline:
  136.  
  137.           CHKDSK /v | awk -f ALLPROGS.AWK
  138.  
  139. What you'll see will be the full file names for just the executables -
  140. exactly what you want. [N.B. Since MS-DOS regards the characters '|', '<',
  141. and '>', as having special meanings it is not possible to include program
  142. statements with these characters on the DOS commandline. For this reason,
  143. we resort to ALLPROGS.AWK.]
  144.  
  145.  
  146.    How does this command work? The first part merely lists all files on
  147. the current drive, regardless of which directory they're in. The character
  148. '|' in the commandline instructs MS-DOS to "pipe" output from CHKDSK to
  149. AWK. The AWK program itself contains a single pattern but no action. This
  150. pattern selects lines for which the current record ends with one of three
  151. extensions: ".COM", ".EXE", or ".BAT". The operator '~' matches regular
  152. expressions, which are delineated by slashes. The trailing dollar sign in
  153. the regular expression anchors text at the end of a line. Given the format
  154. of CHKDSK's output, this pattern matchs only names of executable files.
  155. Since there's no specified action, AWK merely displays the matching lines
  156. on the screen. 
  157.  
  158.  
  159.    Or consider the following batch program, GREP.BAT. It searches through
  160. a file for lines containing a particular string:
  161.  
  162.           echo off
  163.           rem GREP.BAT - a string-search utility
  164.           rem     1st arg = string to search for
  165.           rem     2nd arg = file name to search
  166.           rem
  167.           AWK "$0 ~ /%1/ {print NR, $0}" %2
  168.  
  169. To find which lines in PDPROGS.DOC contain the string "Rainbow" you'd type
  170. "GREP Rainbow PDPROGS.DOC". If any matches ar