so I'm new to the world of Linux. Due to my new internship however, I have to work a lot with it and thus also get a hang of using the terminal appropriately.
Is there a way to set path-variables for faster navigation through directories? Similar to using '~' as an abbreviation for '/home/usr/'.
So far, I have tried to use:
```
name@torch:~$ export var=/home/usr/where/i/want/to/go
name@torch:~$ cd $var
name@torch:~/where/i/want/to/go$ ...
```
This option works only temporarily in a single shell but is not adapted when closing down the terminal or starting another one next to it. Is there a way to define more general path-variables?
Best wishes, Hauke