On Jun 17, 2015, at 2:35 PM, petr <976F at ingv.it> wrote: > how would I make a recursive glob in TCL? > I need to change the permissions of a faulty distfile, where permissions are set to restrictive? You can't, really. You should use our fs-traverse proc. fs-traverse f ${worksrcpath} { file attributes $f -permissions a+r } vq