Re: [PATCH 1/5] t1700-split-index: drop unnecessary 'grep'

2018-09-08 Thread Duy Nguyen
On Thu, Sep 6, 2018 at 4:48 AM SZEDER Gábor wrote: > > The test 'disable split index' in 't1700-split-index.sh' runs the > following pipeline: > > cmd | grep | sed s/// > > Drop that 'grep' from the pipeline, and let 'sed' take over its > duties. Years of using sed and I never realized -n

Re: [PATCH 1/5] t1700-split-index: drop unnecessary 'grep'

2018-09-06 Thread Junio C Hamano
SZEDER Gábor writes: > The test 'disable split index' in 't1700-split-index.sh' runs the > following pipeline: > > cmd | grep | sed s/// > > Drop that 'grep' from the pipeline, and let 'sed' take over its > duties. > > Signed-off-by: SZEDER Gábor > --- Obviously good ;-) Thanks. >

[PATCH 1/5] t1700-split-index: drop unnecessary 'grep'

2018-09-05 Thread SZEDER Gábor
The test 'disable split index' in 't1700-split-index.sh' runs the following pipeline: cmd | grep | sed s/// Drop that 'grep' from the pipeline, and let 'sed' take over its duties. Signed-off-by: SZEDER Gábor --- t/t1700-split-index.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)