Site Map - skip to main content

Hacker Public Radio

Your ideas, projects, opinions - podcasted.

New episodes every weekday Monday through Friday.
This page was generated by The HPR Robot at


hpr2163 :: Gnu Awk - Part 4

Recapping the last episode and looking at variables in an Awk program

<< First, < Previous, , Latest >>

Thumbnail of Dave Morriss
Hosted by Dave Morriss on 2016-11-16 is flagged as Explicit and is released under a CC-BY-SA license.
Awk utility, Awk language, gawk, variables. 5.
The show is available on the Internet Archive at: https://archive.org/details/hpr2163

Listen in ogg, spx, or mp3 format. Play now:

Duration: 00:31:09

Learning Awk.

Episodes about using Awk, the text manipulation language. It comes in various forms called awk, nawk, mawk and gawk, but the standard version on Linux is GNU Awk (gawk). It's a programming language optimised for the manipulation of delimited text.

Gnu Awk - Part 4

Introduction

This is the fourth episode of the series that b-yeezi and I are doing. These shows are now collected under the series title “Learning Awk”.

Recap of the last episode

Logical Operators

We have seen the operators ‘&&’ (and) and ‘||’ (or). These are also called Boolean Operators. There is also one more operator ‘!’ (not) which we haven’t yet encountered. These operators allow the construction of Boolean expressions which may be quite complex.

If you are used to programming you will expect these operators to have a precedence, just like operators in arithmetic do. We will deal with this subject in more detail later since it is relevant not only in patterns but also in other parts of an Awk program.

The next statement

We saw this statement in the last episode and learned that it causes the processing of the current input record to stop. No more patterns are tested against this record and no more actions in the current rule are executed. Note that “next” is a statement like “print”, and can only occur in the action part of a rule. It is also not permitted in BEGIN or END rules (more of which anon).

The BEGIN and END rules

The BEGIN and END elements are special patterns, which in conjunction with actions enclosed in curly brackets make up rules in the same sense that the ‘pattern {action}’ sequences we have seen so far are rules. As we saw in the last episode, BEGIN rules are run before the main ‘pattern {action}’ rules are processed and the input file is (or files are) read, whereas END rules run after the input files have been processed.

It is permitted to write more than one BEGIN rule and more than one END rule. These are just concatenated together in the order they are encountered by Awk.

Awk will complain if either BEGIN or END is not followed by an action since this is meaningless.

Variables, arrays, loops, etc

Learning a programming language is never a linear process, and sometimes reference is made to new features that have not yet been explained. A number of new features were mentioned in passing in the last episode, and we will look at these in more detail in this episode.

Long notes

I have written out a moderately long set of notes for this episode and these are available here https://hackerpublicradio.org/eps/hpr2163/full_shownotes.html.

With a view to making portable notes for this series I have included ePub and PDF versions with this episode. Feedback is welcome to help decide which version is preferable, as are any suggestions on the improvement of the layout.


Comments

Subscribe to the comments RSS feed.

Comment #1 posted on 2016-11-23 08:13:17 by Otto

A very interesting episode, many thanks.

I always shied away from awk - yet another scripting language, but now I see how associative indexing ("hashes") may be useful.

Comment #2 posted on 2016-11-27 13:58:23 by Dave Morriss

Thanks

Glad you found it useful. Keep listening, b-yeezi and I will be talking more about such arrays as we proceed with the series.

Comment #3 posted on 2017-12-09 17:17:19 by Ron Strelecki

GNU AWK, part four

Love the episode, and the series.

I think that in your hello world example that demonstrates the FS built-in variable, the character used should not be a comma, but rather something distinct like a pipe (or some other character that does not have a different context in language). I understand that typically FS will be switched to a comma, if anything, but as the print statement uses a comma for a different function, it can be confusing.

$ awk -F "," 'BEGIN{print "FS is",FS}' FS is ,

$ awk -F "|" 'BEGIN{print "FS is",FS}' FS is |

Comment #4 posted on 2017-12-10 12:52:13 by Dave Morriss

Thanks Ron

Thanks for the comment.

When I wrote this example it never occurred to me that it could be confusing, but now you point it out, yes it is. I think I was keen to show that -F on the command line is the variable FS in the script, and having just shown an example of -F "," just continued to use it!

I was also keen to make it clear that the comma in a print statement is where Awk puts the contents of OFS, so I guess I lost sight of the example a little in my enthusiasm :-)

I will consider modifying these notes in the light of your suggestion.

Comment #5 posted on 2017-12-18 15:21:42 by Ron Strelecki

GNU Awk, part four

I think if you put what you suggested in the notes (that inside a print statement, Awk interprets a comma as OFS) that would be perfect! When learning any language, context variation is a consistent bugaboo. Wait, why does a semi-colon mean one thing here, and something else entirely there? So doing it deliberately, and then pointing it out is definitely beneficial, and points out the internal workings of the language.

Leave Comment

Note to Verbose Commenters
If you can't fit everything you want to say in the comment below then you really should record a response show instead.

Note to Spammers
All comments are moderated. All links are checked by humans. We strip out all html. Feel free to record a show about yourself, or your industry, or any other topic we may find interesting. We also check shows for spam :).

Provide feedback
Your Name/Handle:
Title:
Comment:
Anti Spam Question: What does the letter P in HPR stand for?
Are you a spammer?
What is the HOST_ID for the host of this show?
What does HPR mean to you?