aboutsummaryrefslogtreecommitdiffstats
path: root/test/rsnulw.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/rsnulw.awk')
-rw-r--r--test/rsnulw.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/rsnulw.awk b/test/rsnulw.awk
new file mode 100644
index 00000000..c17780a8
--- /dev/null
+++ b/test/rsnulw.awk
@@ -0,0 +1,7 @@
+BEGIN { RS = "" }
+
+{
+ print NF, "<" $0 ":" RT ">"
+ for (i = 1; i <= NF; i++)
+ print i, "[" $i "]"
+}