memo

2011-02-13

zsh で変数の型っぽいものを表示する

$ x="hoge"
$ integer y=100
$ z=("spam" "egg")
$ print -l "${(t)x}" "${(t)y}" "${(t)z}"
scalar
integer
array