diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:24:00 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:24:00 +0000 |
commit | c1f51e45d90e8cb839aea123c8e0757a265d05fb (patch) | |
tree | 511553dec3d269204a9b0a80558dd10e9c96de29 /Functions/Misc | |
parent | 2ae024d2e92c77c4d1beed337d42210ee754666a (diff) | |
download | zsh-c1f51e45d90e8cb839aea123c8e0757a265d05fb.tar.gz zsh-c1f51e45d90e8cb839aea123c8e0757a265d05fb.tar.xz zsh-c1f51e45d90e8cb839aea123c8e0757a265d05fb.zip |
moved to ./Functions/Example/cat
Diffstat (limited to 'Functions/Misc')
-rw-r--r-- | Functions/Misc/cat | 16 |
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 |