#!/bin/bash
# - bof - #

clear;
x=1;

# - To 100 none stop - #
while [[ $x -le 100 ]]
do
   echo "Hey, I just did $x pushups.";
   (( x ++ ))
done
echo '';



x=1;

# - To 6 with enter - #
while [[ $x -le 6 ]]
do
   read -p "Push $x; Press enter to continue.";
   (( x ++ ))
done
echo 'Congrats, you completed your pushups!!';

# - eof - #
