Por que a = 0; deixe um ++ retornar o código de saída 1?

14

Experimente:

$ a=0
$ let a++
$ echo $?
1 # Did the world just go mad?
$ echo $a
1 # Yes, it did.
$ let a++
$ echo $?
0 # We have normality.
$ echo $a
2

Compare isso:

$ b=0
$ let b+=1
$ echo $?
0

E isso (de Sirex ):

$ c=0
$ let ++c
$ echo $?
0

O que está acontecendo aqui?

$ bash --version
GNU bash, version 4.1.5(1)-release (x86_64-pc-linux-gnu)
    
por l0b0 21.02.2012 / 09:28

1 resposta

16

De help let :

Exit Status:
If the last ARG evaluates to 0, let returns 1; let returns 0 otherwise..

Como var++ é pós -increment, acho que o último argumento faz avaliar como zero. Sutil ...

Uma ilustração talvez mais clara:

$ let x=-1 ; echo x=$x \$?=$?
x=-1 $?=0
$ let x=0 ; echo x=$x \$?=$?
x=0 $?=1
$ let x=1 ; echo x=$x \$?=$?
x=1 $?=0
$ let x=2 ; echo x=$x \$?=$?
x=2 $?=0
    
por 21.02.2012 / 09:33