Re: [PATCH 1/1] lib: remove leading spaces before tabs

From: Leizhen (ThunderTown)
Date: Tue Jun 08 2021 - 05:18:27 EST




On 2021/6/8 16:44, Andy Shevchenko wrote:
> On Tue, Jun 8, 2021 at 10:14 AM Zhen Lei <thunder.leizhen@xxxxxxxxxx> wrote:
>>
>> 1) Run the following command to find and remove the leading spaces before
>> tabs:
>> find lib/ -type f | xargs sed -r -i 's/^[ ]+\t/\t/'
>
> Hint for the future, try to use what Git provides, for example `git
> ls-files -- lib/`.

Okay, thanks. I learned a new trick.

>