mirror of https://github.com/dyne/zuper.git
17 lines
357 B
Plaintext
17 lines
357 B
Plaintext
##########################
|
|
# Zuper Init
|
|
|
|
# initialize globals only after sourcing everything
|
|
# since zlibs may contain more variable declarations
|
|
for v in $vars; do
|
|
typeset -h $v
|
|
done
|
|
for a in $arrs; do
|
|
typeset -a $a
|
|
done
|
|
func "Zuper $zuper_version initialized"
|
|
func "${#vars} global variables registered"
|
|
func "${#arrs} global arrays registered"
|
|
|
|
|