#!/bin/bash

for i in $@
do
   sleep 1
   echo "tasking... $i"
done

