Am 22.12.2015 um 16:27 schrieb Elia Pinto:
-for mail in `echo 00*` +for mail in $(echo 00*)
-for mail in `echo rfc2047/00*` +for mail in $(echo rfc2047/00*)
True, these are equvalence transformations. But a better way to get rid of the back-quotes is to write these lines as
for mail in echo 00* for mail in echo rfc2047/00* No? -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html