#     Doc: scroll
# Changed: 2025dec11

# Clear the screen while keeping
# the command line at the bottom.
clear

line_count=100
while [ $line_count -gt 0 ]
do
echo
line_count=$(($line_count - 1))
done
