Guest User

Untitled

a guest
Dec 18th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. % zsh --version
  2. zsh 5.0.7 (x86_64-pc-linux-gnu)
  3. % typeset -A frobozz
  4. % alias -g foo='echo xyz'
  5. % frobozz[$(foo)]=9
  6. % echo ${(kv)frobozz}
  7. xyz 9
  8.  
  9. % zsh --version
  10. zsh 5.1 (i386-unknown-netbsdelf6.1)
  11. % typeset -A frobozz
  12. % alias -g foo='echo xyz'
  13. % frobozz[$(foo)]=9
  14. zsh: not an identifier: frobozz[$(fooech9
Add Comment
Please, Sign In to add comment