Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been working with some bash scripting lately and been looking through the man pages. From what I have gathered, does $(( )) mean expr and [ ] mean test?

For $(( )):

echo $(( 5 + 3 ))

has the same output as:

echo $(expr 5 + 3)

For [ ]:

test 'str' = 'str'

has the same success value as:

[ 'str' = 'str' ]

Did I get my understanding right?

share|improve this question
2  
You might also consider [[ ]], which allow you to do pattern matching (amoungst other things). Single [ ] is Bourne shell syntax. – cdarke May 23 '12 at 12:29
Thanks for the heads up! I've got it figured out with all the kind help you all have provided! Cheers! – Vern May 26 '12 at 19:16

2 Answers

up vote 8 down vote accepted

almost correct.

the ((...)) construct is equivalent to the bash builtin let. let does mostly the same stuff which expr does.

the $((...)) construct, note the $ at the beginning, will substitute the output of the expression inside just like $(...) does.

the [...] construct is in fact just another name for test.

see the bash help pages for more information.

  • help "("
  • help let
  • help [
  • help test

see also:

share|improve this answer
Thanks a lot! And for the links too! They were really useful :) – Vern May 24 '12 at 18:23

You are correct about [ ] and test

About $(( )), this is a more elaborate replacement of expr. You can compute more complex expressions than with expr.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.