#!/bin/sh
#
# This script will output the PATH variable
#   with 1 directory per line
#

echo $PATH | /usr/bin/tr ':' '\n'

