aboutsummaryrefslogtreecommitdiffstats
path: root/test/substr.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/substr.awk')
-rw-r--r--test/substr.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/substr.awk b/test/substr.awk
new file mode 100644
index 00000000..f330402c
--- /dev/null
+++ b/test/substr.awk
@@ -0,0 +1,5 @@
+BEGIN {
+ x = "A"
+ printf("%-39s\n", substr(x,1,39))
+ exit (0)
+}