Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.bash.bug > #15348 > unrolled thread
| Started by | YAMAGUCHI Takanori <t-yama@iij.ad.jp> |
|---|---|
| First post | 2019-09-05 17:40 +0900 |
| Last post | 2019-09-05 17:40 +0900 |
| Articles | 1 — 1 participant |
Back to article view | Back to gnu.bash.bug
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
arithmetic expression from outside YAMAGUCHI Takanori <t-yama@iij.ad.jp> - 2019-09-05 17:40 +0900
| From | YAMAGUCHI Takanori <t-yama@iij.ad.jp> |
|---|---|
| Date | 2019-09-05 17:40 +0900 |
| Subject | arithmetic expression from outside |
| Message-ID | <mailman.420.1567687701.2075.bug-bash@gnu.org> |
Is this an intended behaviour? % cat sum.sh sum=0 while read n; do sum=$((sum+n)) done echo $sum % seq 10 | bash sum.sh 55 % yes ++sum | head -10 | bash sum.sh 1023 % echo 'x[$(echo Hello, world!>&2)]' | bash sum.sh Hello, world! 0 % bash -c 'echo $BASH_VERSION' 5.0.9(0)-release
Back to top | Article view | gnu.bash.bug
csiph-web