# returns the lower-case equivalents of the command-line args
# if no command-line args, uses stdin

if [ -z  "$*" ]
then
	tr '[:upper:]' '[:lower:]'
else
	echo $* | tr '[:upper:]' '[:lower:]'
fi
