#!/bin/ksh
#
#< Simple script to show a clear output of $PATH
#
if [ $# -ne "0" ]; then
  echo "clp: error: should be called with no arguments"
  exit 1
fi

echo "\$PATH output for user $USER"
echo $PATH | tr ':' '\n'
exit 0


# End of script