#!/bin/bash
#Store arguments from bash command line
args=("$@")
#echo arguments to the shell
echo ${args[0]} ${args[1]} ${args[2]}
echo
echo ${args[0]}
echo ${args[1]}
echo ${args[2]}


