aboutsummaryrefslogtreecommitdiffstats
path: root/test/rstest2.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/rstest2.awk')
-rw-r--r--test/rstest2.awk6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/rstest2.awk b/test/rstest2.awk
new file mode 100644
index 00000000..5ed4701d
--- /dev/null
+++ b/test/rstest2.awk
@@ -0,0 +1,6 @@
+BEGIN {
+ RS = ""
+ FS = "\\"
+ $0 = "a\\b"
+ print $1
+}