summaryrefslogtreecommitdiffstats
path: root/old/skeletons/awk.erb
diff options
context:
space:
mode:
Diffstat (limited to 'old/skeletons/awk.erb')
-rw-r--r--old/skeletons/awk.erb9
1 files changed, 9 insertions, 0 deletions
diff --git a/old/skeletons/awk.erb b/old/skeletons/awk.erb
new file mode 100644
index 0000000..86d52a1
--- /dev/null
+++ b/old/skeletons/awk.erb
@@ -0,0 +1,9 @@
+<%= header 'awk.hdr' %>
+
+BEGIN { }
+
+{
+print "line "NR" has "NF" fields.";
+}
+
+END { print "line number : "NR }