October 7, 2020

$path

 # $PATH


check which directories are on the path


```bash

echo $PATH

```


add directory to path


```bash

export PATH='path_to_directory:$PATH'

#load new path

source ~/.bashrc 

```

No comments:

Post a Comment

How to type letters with accent

Very useful article https://www.freecodecamp.org/news/how-to-type-letters-with-accents-on-mac/