in reply to Re^2: Multiplexing array of arrays?
in thread Multiplexing array of arrays?

glob is a list generator. An entry will be generated for each value of a list in curlies
$ perl -le'print for glob "{a,b,c}{d,e,f}"' ad ae af bd be bf cd ce cf

A shell example:

cp file{,.bk}
is the same as
cp file file.bk