On Wed, Feb 4, 2015 at 2:39 PM, Greg Wooledge <wool...@eeg.ccf.org> wrote:
> On that note, today I learned that you are not allowed to use either * > or @ as the index of an associative array in bash. I guess I can see why, > but... that's probably going to break something some day. :) of course you can ;-) declare -A a; a["@"]="right"; a["*"]="hoping that you are in an empty directory"; cheers, pg