#!/bin/sh
#
# lastArg - return last arg of list

for i in "$@"
do
	LAST_ARG="$i"
done

echo $LAST_ARG
