Only Linux Stuff
If you want to see entire variables defined in your system, we can run the command echo $PATH, it will show/print all the variables as shown in the above command, this we all know :)
but if you see it looks messy and difficult to read, to make it good and easy to read, we need to translate the output using the command echo $PATH | tr ':' '\n' as shown below screenshot :)