RosettaCodeData/Task/Loops-While/UnixPipes/loops-while.up

4 lines
121 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(echo 1024>p.res;tail -f p.res) | while read a ; do
test $a -gt 0 && (expr $a / 2 >> p.res ; echo $a) || exit 0
done