mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-28 17:10:59 +01:00
moved from ./Functions/Misc/cat
This commit is contained in:
parent
c1f51e45d9
commit
3b3a55e39b
1 changed files with 16 additions and 0 deletions
16
Functions/Example/cat
Normal file
16
Functions/Example/cat
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
#! /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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue