about summary refs log tree commit diff
path: root/Functions/cat
diff options
context:
space:
mode:
Diffstat (limited to 'Functions/cat')
-rw-r--r--Functions/cat16
1 files changed, 0 insertions, 16 deletions
diff --git a/Functions/cat b/Functions/cat
deleted file mode 100644
index 612deac03..000000000
--- a/Functions/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