#!/bin/bash

for i in {1..300}
do
   sleep 1
   echo "tasking... $i"
done

