Run the following to see your PATH settings in easy to read format on screen:
```
tr ":" "\n" <<<"$PATH"
tr ":" "\n" <<<"$PATH" | lolcat
```
This is a little more portable
```
echo "$PATH" | tr ":" "\n"
echo "$PATH" | tr ":" "\n" | lolcat
```

#unix #linux

@nixCraft

'lolcat' needs 18 dependencies with a total size of 46,2 MB , lol no thanks.