aboutsummaryrefslogtreecommitdiffstats
path: root/test/reparse.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/reparse.awk')
-rw-r--r--test/reparse.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/reparse.awk b/test/reparse.awk
new file mode 100644
index 00000000..433ecbb2
--- /dev/null
+++ b/test/reparse.awk
@@ -0,0 +1,7 @@
+{
+ gsub(/x/, " ")
+ $0 = $0
+ print $1
+ print $0
+ print $1, $2, $3
+}