Easy tool to split the current $PATH of the system into individual lines.
#!/bin/bash
{
for i in $(echo "$PATH" | sed 's/:/ /g'); do echo $i; done;
} || echo "Failed."; exit 127;
ExampleStation:~ genuser1$ for i in $(echo "$PATH" | sed 's/:/ /g'); do echo $i; done;
/usr/local/opt/llvm/bin
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin
/usr/local/go/bin