[PATCH 0/2] Script style improvements in lib/coresight.sh

Diederik de Haas posted 2 patches 2 years, 7 months ago
tools/perf/tests/shell/lib/coresight.sh | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
[PATCH 0/2] Script style improvements in lib/coresight.sh
Posted by Diederik de Haas 2 years, 7 months ago
These 2 patches improve the efficiency and quality of the
lib/coresight.sh script.

The first one uses grep's `-c` parameter to count the results instead of
piping it to `wc -l`.
The second one replaces the use of backticks (`...`) with $(...) as the
former has several potential issues while the latter does not.

Diederik de Haas (2):
  perf test: Replace 'grep | wc -l' with 'grep -c'
  perf test: Replace legacy `...` with $(...)

 tools/perf/tests/shell/lib/coresight.sh | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

-- 
2.39.1
Re: [PATCH 0/2] Script style improvements in lib/coresight.sh
Posted by Carsten Haitzler 2 years, 7 months ago
On 2/1/23 21:49, Diederik de Haas wrote:
> These 2 patches improve the efficiency and quality of the
> lib/coresight.sh script.
>
> The first one uses grep's `-c` parameter to count the results instead of
> piping it to `wc -l`.
> The second one replaces the use of backticks (`...`) with $(...) as the
> former has several potential issues while the latter does not.
>
> Diederik de Haas (2):
>    perf test: Replace 'grep | wc -l' with 'grep -c'
>    perf test: Replace legacy `...` with $(...)
>
>   tools/perf/tests/shell/lib/coresight.sh | 18 +++++++++---------
>   1 file changed, 9 insertions(+), 9 deletions(-)
>
ACK to all of this series.

IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
Re: [PATCH 0/2] Script style improvements in lib/coresight.sh
Posted by Arnaldo Carvalho de Melo 2 years, 7 months ago
Em Thu, Feb 02, 2023 at 08:38:46AM +0000, Carsten Haitzler escreveu:
> On 2/1/23 21:49, Diederik de Haas wrote:
> > These 2 patches improve the efficiency and quality of the
> > lib/coresight.sh script.
> >
> > The first one uses grep's `-c` parameter to count the results instead of
> > piping it to `wc -l`.
> > The second one replaces the use of backticks (`...`) with $(...) as the
> > former has several potential issues while the latter does not.
> >
> > Diederik de Haas (2):
> >    perf test: Replace 'grep | wc -l' with 'grep -c'
> >    perf test: Replace legacy `...` with $(...)
> >
> >   tools/perf/tests/shell/lib/coresight.sh | 18 +++++++++---------
> >   1 file changed, 9 insertions(+), 9 deletions(-)
> >
> ACK to all of this series.

Thanks, added to the two patches, that I processed yesterday, still in
tmp.perf/core.

- Arnaldo
Re: [PATCH 0/2] Script style improvements in lib/coresight.sh
Posted by Arnaldo Carvalho de Melo 2 years, 7 months ago
Em Wed, Feb 01, 2023 at 10:49:43PM +0100, Diederik de Haas escreveu:
> These 2 patches improve the efficiency and quality of the
> lib/coresight.sh script.
> 
> The first one uses grep's `-c` parameter to count the results instead of
> piping it to `wc -l`.
> The second one replaces the use of backticks (`...`) with $(...) as the
> former has several potential issues while the latter does not.
> 
> Diederik de Haas (2):
>   perf test: Replace 'grep | wc -l' with 'grep -c'
>   perf test: Replace legacy `...` with $(...)



Thanks, applied.

- Arnaldo