aboutsummaryrefslogtreecommitdiffstats
path: root/test/fpat8.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/fpat8.awk')
-rw-r--r--test/fpat8.awk10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/fpat8.awk b/test/fpat8.awk
new file mode 100644
index 00000000..9c41591b
--- /dev/null
+++ b/test/fpat8.awk
@@ -0,0 +1,10 @@
+BEGIN {
+ RS = ""
+ FPAT = "\\w+"
+}
+
+{
+ print
+ $2 = "-"
+ print
+}