summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorunknown <root@telnet.shack>2010-12-28 21:23:30 +0100
committertv <root@telnet.shack>2010-12-28 21:23:30 +0100
commitd9961c9d04abd9e15cd1a3035dab6b94bae30a6f (patch)
tree0d2a1964b128bb4c9a3b59e5654eb0c80a715562 /modules
parent0d7c646f54ceb6cc4e2f3c85017a55d357f42bd4 (diff)
added module: cat
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/cat14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/cat b/modules/cat
new file mode 100755
index 00000000..e090acba
--- /dev/null
+++ b/modules/cat
@@ -0,0 +1,14 @@
+#! /bin/sh
+case "$1" in
+ (--help) : ;;
+ (*)
+ while read line ; do
+ case "$line" in
+ (/quit)
+ break 2
+ ;;
+ (*)
+ echo "[$line]"
+ esac
+ done
+esac