about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:24:00 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:24:00 +0000
commitc1f51e45d90e8cb839aea123c8e0757a265d05fb (patch)
tree511553dec3d269204a9b0a80558dd10e9c96de29 /Functions
parent2ae024d2e92c77c4d1beed337d42210ee754666a (diff)
downloadzsh-c1f51e45d90e8cb839aea123c8e0757a265d05fb.tar.gz
zsh-c1f51e45d90e8cb839aea123c8e0757a265d05fb.tar.xz
zsh-c1f51e45d90e8cb839aea123c8e0757a265d05fb.zip
moved to ./Functions/Example/cat
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/cat16
1 files changed, 0 insertions, 16 deletions
diff --git a/Functions/Misc/cat b/Functions/Misc/cat
deleted file mode 100644
index 612deac03..000000000
--- a/Functions/Misc/cat
+++ /dev/null
@@ -1,16 +0,0 @@
-#! /usr/local/bin/zsh -f
-
-local file
-
-if ((! ARGC)) then
-	set -- -
-fi
-
-for file
-do
-	if [[ "$file" == - ]] then
-		while read -u0ek 4096; do ; done
-	else
-		while read -u0ek 4096; do ; done < "$file"
-	fi
-done