From c175751b501a3a4cb40ad4787340a597ea769be4 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Thu, 15 Apr 1999 18:05:35 +0000 Subject: Initial revision --- Functions/zls | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 Functions/zls (limited to 'Functions/zls') diff --git a/Functions/zls b/Functions/zls new file mode 100644 index 000000000..da6eff856 --- /dev/null +++ b/Functions/zls @@ -0,0 +1,55 @@ +# zls () { +# simple internal ls using the stat module + +zmodload -i stat || return 1 + +emulate -R zsh +setopt localoptions + +local f stat opts='' L=L mod=: dirs list + +dirs=() +list=() + +while getopts ailLFd f +do + opts=$opts$f + if [[ $f == '?' ]] then + echo Usage: $0 [ -ailLFd ] [ filename ... ] + return 1 + fi +done +shift OPTIND-1 + +[[ $opts == *L* ]] && L='' +[[ $opts == *F* ]] && mod=T$mod +[[ $opts == *a* ]] && setopt globdots + +if ((! ARGC)) then + set * + opts=d$opts +fi + +for f in $* +do + stat -s$L -A stat -F "%b %e %H:%M" - $f || continue + if [[ $opts != *d* && $stat[3] == d* ]] then + dirs=( $dirs $f ) + elif [[ $opts == *l* ]] then + [[ $opts == *i* ]] && print -n "${(l:7:)stat[2]} " + [[ -n $stat[14] ]] && f=( $f '->' $stat[14] ) || f=( $f($mod) ) + print -r -- "$stat[3] ${(l:3:)stat[4]} ${(r:8:)stat[5]} " \ + "${(r:8:)stat[6]} ${(l:8:)stat[8]} $stat[10] $f" + else + f=( $f($mod) ) + list=( "$list[@]" "${${(M)opts:%*i*}:+${(l:7:)stat[2]} }$f" ) + fi +done +(($#list)) && print -cr -- "$list[@]" +while (($#dirs)) do + ((ARGC > $#dirs)) && echo + ((ARGC > 1)) && echo $dirs[1]: + (cd $dirs[1] && $0 -d$opts) + shift dirs +done +# } -- cgit 1.4.1