5 lines
107 B
Bash
5 lines
107 B
Bash
setopt extended_glob
|
|
for f in $ZDOTDIR/all/^*.zwc(N); do
|
|
[[ ! -f $f.zwc ]] && zcompile $f
|
|
source $f
|
|
done
|