Johannes Sixt <j6t@xxxxxxxx> writes: > Am 22.12.2015 um 19:35 schrieb Johannes Sixt: >> 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* > > Ahem... both of these lines without the 'echo', of course! Very true. Let's leave that kind of things as separate clean-ups after these patches settle, as mixing manual and mechanical changes in a single patch makes it harder to review. Thanks. -- 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