Environment Variables
Linux has lots of variables in your default environment. Variables in Linux start with a '$' and, by convention, they frequently use capital letters (but that is not required). You can also create variables in Linux to use later, which is a convenient trick that we will use. Try the following commands:
List all the variables currently in your environment:
env
Print the "HOME" variable to see what it contains:
...