#!/bin/bash echo "I need five arguments." echo "first is $1" echo "second is $2" echo "third is $3" echo "fourth is $4" echo "fifth is $5" echo "and the name of this script is $0"