|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
|
Re: [PLUG] bash, double for
|
Quoting "Paul L. Snyder" <plsnyder@drexel.edu>:
> zsh$ WHAT="IPA Gorgonzola bouillabaisse"
> zsh$ typeset -T WHAT thing ' '
> zsh$ echo $thing[2]
> Gorgonzola
> zsh$ thing[2]=Taleggio
> zsh$ WHAT="IPA Taleggio bouillabaisse"
That last line is a typo. The end of the above example should read:
zsh$ thing[2]=Taleggio
zsh$ echo $WHAT
IPA Taleggio bouillabaisse
Sorry 'bout that.
pls
___________________________________________________________________________
Philadelphia Linux Users Group -- http://www.phillylinux.org
Announcements - http://lists.phillylinux.org/mailman/listinfo/plug-announce
General Discussion -- http://lists.phillylinux.org/mailman/listinfo/plug
|
|