aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc/fifotest.sh
diff options
context:
space:
mode:
Diffstat (limited to 'misc/fifotest.sh')
-rwxr-xr-xmisc/fifotest.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/misc/fifotest.sh b/misc/fifotest.sh
deleted file mode 100755
index 8ad0593..0000000
--- a/misc/fifotest.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-if [ -z "$1" ]
-then
- echo "Need fifo filename!" >&2
- exit 2
-fi
-while :
-do
- echo 'uri dns.be'
- echo 'uri dns.be' > $1
- sleep 2
- echo 'uri www.archlinux.org'
- echo 'uri www.archlinux.org' > $1
- sleep 2
- echo 'uri icanhascheezburger.com'
- echo 'uri icanhascheezburger.com' > $1
- sleep 2
- echo 'back'
- echo 'back' > $1
-done