in reply to Re: How glob expands
in thread How glob expands

Yes, glob curlies are cool and useful for things other than matching filenames. You can do stuff like this:

$pat = join '-', ('{foo,bar,baz}') x 3; $\="\n"; print for glob $pat;