@@ -0,0 +1,15 @@
#!/usr/bin/env bash
max=0
c=0
while read a; do
if [[ -z "$a" ]]; then
[[ $c -gt $max ]] && max=$c
else
let c+=$a
fi
done
echo $max
The note is not visible to the blocked user.