awk is an extraction and reporting language, named after its three original authors: * Alfred V. **A**ho * Peter J. **W**einberger * Brian W. **K**ernighan they write: {{{ Awk is a convenient and expressive programming language that can be applied to a wide variety of computing and data-manipulation tasks. }}} The title of the book uses `AWK', but the contents of the book use `awk' (except at the beginning of sentences, as above). I will attempt to do the same (except perhaps at the beginning of sentences, as above). Most implementations of awk are interpreters which read your awk source program and parse it and act on it directly. Some vendors have developed awk compilers which will produce an //executable// that may be run stand-alone -- thus, the end user does not have access to the source code. There are also various awk->C converters which allow you to achieve the same functionality (by compiling the resulting C code later). One of the most popular compilers, from Thompson Automation [[http://www.tasoft.com/tawk.html|tawk]], continues to be the subject of many positive posts in the group [[http://groups.google.com/group/comp.lang.awk/topics|comp.lang.awk]]. {{{ I don't really want to start a reviews section, but it may be appropriate. I think it's of general interest, and a good thing for the FAQ, but I don't want to be given any grief by a negative review I didn't write just because I'm distributing it. if you have a review you'd like me to put a pointer to, please inform me -- I already have some pointers of this form listed. }}} [[http://groups.google.com/group/comp.lang.awk/topics|comp.lang.awk]] is not particularly about sed; for sed discussion. For sed related issues, there is a newsgroup [[http://groups.google.com/group/alt.comp.lang.sed/topics|alt.comp.lang.sed]]. See the sed FAQ (and other documents) for answers to common questions and group recommendations: * http://www.dbnet.ece.ntua.gr/~george/sed/sedfaq.html * http://www.wollery.demon.co.uk/sed_faq.txt * http://www.student.northpark.edu/pemente/sed/index.htm * http://www.student.northpark.edu/pemente/sed/sedfaq.html * http://www.student.northpark.edu/pemente/sed/sed1line.txt this all seems unrelated to AWK Engineering AG at http://www.awk.ch (This text was originally imported from the comp.lang.awk faq) == Implementation Timeline # 1977-1985: awk, now also known as 'old awk' or (confusingly) 'awk': the original version of the language, lacking many of the features that make it fun to play with now. # 1985-1996: [[http://www.cs.bell-labs.com/cm/cs/awkbook/index.html|awk]], often called 'new awk', 'nawk' or 'BWK awk': the second major incarnation of the language, reflecting the language as it is currently known and loved. # gawk came to be sometime around 1986 according to the [[http://www.gnu.org/software/gawk/manual/|gawk-manual]]; in any case, it is still actively maintained now. The newest released version is 3.1.6. The [[http://www.gnu.org|GNU Project]]'s [[http://savannah.gnu.org|Savannah site]] hosts [[https://savannah.gnu.org/cvs/?group=gawk|CVS repositories]] for both the stable version (what will come after 3.1.6) and the development version (3.2.0 or 4.x; the gawk maintainer hasn't decided yet). # 1991: Mike Brennan announces [[http://freshmeat.net/projects/mawk/|mawk]] on [http://groups.google.com/group/comp.lang.misc/msg/2ebf639c2f976fa2|Usenet]. # 1996: BWK awk was released under an open license. Huzzah! This version is also still maintained and is available from Brian Kernighan's home pages at Bell Labs [[http://cm.bell-labs.com/who/bwk/|1]] and Princeton [[http://www.cs.princeton.edu/~bwk/|2]]. # Sometime before the present: [[http://sourceforge.net/projects/xmlgawk/|xgawk]], [[http://sourceforge.net/projects/jawk/|jawk]], awkcc, [[http://cm.bell-labs.com/cm/cs/who/bwk/awkc++.ps|Kernighan's nameless awk-to-C++ compiler]], [[http://awka.sourceforge.net/index.html|awka]], [[http://www.tasoft.com/tawk.html|tawk]] and [[http://www.busybox.net/|busybox awk]] came to be. It's a bit embarrassing to note that the exact origins of each are a bit hazy. This whole section requires further work. Awk systems published under closed licenses are uninteresting. (there may or may not be a WartAndWishList detailing the annoying bits of awk, and those bits that are annoying because they are missing...)
Summary:
This change is a minor edit.
Username: