diff options
Diffstat (limited to 'shell/hush_test/hush-arith/arith2.sub')
-rwxr-xr-x | shell/hush_test/hush-arith/arith2.sub | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/shell/hush_test/hush-arith/arith2.sub b/shell/hush_test/hush-arith/arith2.sub index 29f9471..8d79181 100755 --- a/shell/hush_test/hush-arith/arith2.sub +++ b/shell/hush_test/hush-arith/arith2.sub @@ -46,12 +46,8 @@ echo $(( ---7 )) echo $(( ++7 )) ( echo $(( ++ + 7 )) ) -# bash 3.2: -7 -#ash# echo -7 $(( ++-7 )) -# bash 3.2: -7 -#ash# echo -7 $(( ++ - 7 )) - -# bash 3.2: 7 -#ash# echo 7 $(( +--7 )) -# bash 3.2: 7 -#ash# echo 7 $(( -- + 7 )) +echo -7 $(( ++-7 )) +echo -7 $(( ++ - 7 )) + +echo 7 $(( +--7 )) +echo 7 $(( -- + 7 )) |