|
Message-ID: <CAMKF1soQzM7mw=m1iJjw0J2DD54-BicBw-dyF_1rhr5CO7-kfg@mail.gmail.com> Date: Tue, 3 May 2022 09:30:35 -0700 From: Khem Raj <raj.khem@...il.com> To: musl@...ts.openwall.com Cc: Jules Maselbas <jmaselbas@...ray.eu> Subject: Re: [PATCH 1/2] tools: Add a script to remove trailing spaces On Tue, May 3, 2022 at 8:57 AM Jules Maselbas <jmaselbas@...ray.eu> wrote: > > Add the remove-trailing-space.sh script, it will only consider files > tracked by git. Optionaly accept arguments to select the affected path. > ah cool. Maybe answers my previous feedback to other patch > Signed-off-by: Jules Maselbas <jmaselbas@...ray.eu> > --- > tools/remove-trailing-space.sh | 2 ++ > 1 file changed, 2 insertions(+) > create mode 100755 tools/remove-trailing-space.sh > > diff --git a/tools/remove-trailing-space.sh b/tools/remove-trailing-space.sh > new file mode 100755 > index 00000000..a8b0056a > --- /dev/null > +++ b/tools/remove-trailing-space.sh > @@ -0,0 +1,2 @@ > +#!/bin/sh > +git grep '[[:space:]]$' -- $@ | sed 's/:.*//' | uniq | xargs sed -i 's/[[:space:]]\+$//' > -- > 2.17.1 >
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.