aboutsummaryrefslogtreecommitdiffstats
path: root/test/pipeio3.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/pipeio3.awk')
-rw-r--r--test/pipeio3.awk15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/pipeio3.awk b/test/pipeio3.awk
deleted file mode 100644
index a1cd3743..00000000
--- a/test/pipeio3.awk
+++ /dev/null
@@ -1,15 +0,0 @@
-BEGIN {
- outputCommand = "cart"
- inputCommand = "ls"
-
- print "doing first print" > "/dev/stderr"
- print "hello" | outputCommand
-
- print "doing first getline" > "/dev/stderr"
- inputCommand | getline
-
- print "doing second print" > "/dev/stderr"
- print "hello" | outputCommand
-
- print "made it here" > "/dev/stderr"
-}