[arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread Victor Lowther
It is worth 10 - 30% speedup whenever you want to compare something. --- functions |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/functions b/functions index 6df8c5e..9b348b7 100644 --- a/functions +++ b/functions @@ -40,7 +40,7 @@ unset TERM_COLORS unset TZ #

Re: [arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread Thomas Bächler
Am 30.06.2010 23:47, schrieb Victor Lowther: It is worth 10 - 30% speedup whenever you want to compare something. Where do you get this from? I always used [ ], and I found it sufficient. Why is [[ ]] faster? -if [ $USECOLOR = YES -o $USECOLOR = yes ]; then +if [[ $USECOLOR = YES || $USECOLOR

Re: [arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread Daenyth Blank
On Wed, Jun 30, 2010 at 17:56, Thomas Bächler tho...@archlinux.org wrote: Am 30.06.2010 23:47, schrieb Victor Lowther: It is worth 10 - 30% speedup whenever you want to compare something. Where do you get this from? I always used [ ], and I found it sufficient. Why is [[ ]] faster? -if [

Re: [arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread Victor Lowther
On Wed, 2010-06-30 at 23:56 +0200, Thomas Bächler wrote: Am 30.06.2010 23:47, schrieb Victor Lowther: It is worth 10 - 30% speedup whenever you want to compare something. Where do you get this from? I always used [ ], and I found it sufficient. Why is [[ ]] faster? [[ ]] is faster because

Re: [arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread bardo
2010/7/1 Daenyth Blank daenyth+a...@gmail.com: On Wed, Jun 30, 2010 at 17:56, Thomas Bächler tho...@archlinux.org wrote: Am 30.06.2010 23:47, schrieb Victor Lowther: It is worth 10 - 30% speedup whenever you want to compare something. Where do you get this from? I always used [ ], and I found

Re: [arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread Thomas Bächler
Am 01.07.2010 00:22, schrieb Victor Lowther: On Wed, 2010-06-30 at 23:56 +0200, Thomas Bächler wrote: Am 30.06.2010 23:47, schrieb Victor Lowther: It is worth 10 - 30% speedup whenever you want to compare something. Where do you get this from? I always used [ ], and I found it sufficient.

Re: [arch-general] [PATCH 04/48] Use [[ ]] instead of [ ] for conditional checking when running in bash.

2010-06-30 Thread Victor Lowther
On Thu, 2010-07-01 at 00:24 +0200, bardo wrote: 2010/7/1 Daenyth Blank daenyth+a...@gmail.com: On Wed, Jun 30, 2010 at 17:56, Thomas Bächler tho...@archlinux.org wrote: Am 30.06.2010 23:47, schrieb Victor Lowther: It is worth 10 - 30% speedup whenever you want to compare something.