#!/bin/bash
#bash script to shift through the arguments one by one using an until loop

if  [ "$#" -le 0 ]; then
    echo "You need to enter at least 1 argument"
fi

until [ -z "$1" ] # until there are no arguments left
do
  echo -n "$1 "
  sleep 1 
  shift
done

echo # newline