zsh - variable assignment isn't working
Put the assignment on a separate line from the local
definition:
local info
info=( $(command df -P $fs | awk 'END{ print $2,$3,$5 }') )
Put the assignment on a separate line from the local
definition:
local info
info=( $(command df -P $fs | awk 'END{ print $2,$3,$5 }') )