1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00

moved to ./Functions/Example/cat

This commit is contained in:
Sven Wischnowsky 2001-04-02 12:24:00 +00:00
parent 2ae024d2e9
commit c1f51e45d9

@ -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