1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # ++ and -- are not inc/dec operators on non-variables, they are + + and - - sequences
- ( echo $(( --7 )) )
- ( echo $(( ++7 )) )
- ( echo $(( -- 7 )) )
- ( echo $(( ++ 7 )) )
- #ash# ((++array[0] ))
- #ash# echo 1 $array
- #ash# (( ++ array[0] ))
- #ash# echo 2 $array
- #ash# (( ++a ))
- #ash# echo 1 $a
- #ash# (( ++ a ))
- #ash# echo 2 $a
- #ash# (( --a ))
- #ash# echo 1 $a
- #ash# (( -- a ))
- #ash# echo 0 $a
- a=0
- echo 5 $(( 4 + ++a ))
- echo 1 $a
- # this is treated as 4 + ++a
- echo 6 $(( 4+++a ))
- echo 2 $a
- a=2
- # this is treated as 4 - --a
- echo 3 $(( 4---a ))
- echo 1 $a
- a=1
- echo 4 $(( 4 - -- a ))
- echo 0 $a
- #ash# (( -- ))
- # -- is not a dec operator on non-variable, it is the - - sequence
- echo $(( ---7 ))
- ( echo $(( -- - 7 )) )
- #ash# (( ++ ))
- # ++ is not a inc operator on non-variable, it is the + + sequence
- echo $(( ++7 ))
- ( echo $(( ++ + 7 )) )
- echo -7 $(( ++-7 ))
- echo -7 $(( ++ - 7 ))
- echo 7 $(( +--7 ))
- echo 7 $(( -- + 7 ))
|