Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > gnu.bash.bug > #15348 > unrolled thread

arithmetic expression from outside

Started byYAMAGUCHI Takanori <t-yama@iij.ad.jp>
First post2019-09-05 17:40 +0900
Last post2019-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.


Contents

  arithmetic expression from outside YAMAGUCHI Takanori <t-yama@iij.ad.jp> - 2019-09-05 17:40 +0900

#15348 — arithmetic expression from outside

FromYAMAGUCHI Takanori <t-yama@iij.ad.jp>
Date2019-09-05 17:40 +0900
Subjectarithmetic 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

[toc] | [standalone]


Back to top | Article view | gnu.bash.bug


csiph-web