Another way to show PATH entries one per line
An alternative to the method I showed the first of June to show PATH entries one per line is:
echo -e ${PATH//:/\\n}
In bash
this replaces all occurrences of :
in the variable PATH
with a
newline character. For more information see
Shell Parameter Expansion in
the Bash Reference Manual.