recursive glob ...

Gustaf Neumann neumann at wu.ac.at
Thu Jun 18 02:07:33 PDT 2015


Am 17.06.15 um 20:35 schrieb petr:
> Hi all,
> how would I make a recursive glob in TCL?
another common pattern is to use

     foreach file [exec find -L $path -type f -name $pattern] {
        ...
     }

which is straight-forward to be tailored for a wide range of
usage scenarios

Best regards
-gn


More information about the macports-dev mailing list