1 2 3 4 5 6 7 8 9 10
{%#!/bin/awk -f BEGIN { split("Jack Joe Jonathan", names) FOR name IN names %} Hello {{name}}{{is_last ? "!" : ","}} {% ENDFOR %} Welcome to the world of {{toupper("awk")}} templating! {%}%}