#! /bin/bash # # arguments - a simple script that prints out arguments it is passed # see the alice script for more features echo "The script was called with this name: $0" echo "This is the first argument: $1" echo "This is the second argument: $2" echo "This is the third argument: $3" echo "You passed $# arguments" echo "This is the full list of arguments: $@"