Improved syntax

This commit is contained in:
Sun Knudsen 2021-04-01 09:13:47 -04:00
parent ddee667ecf
commit cfe623a169
No known key found for this signature in database
GPG Key ID: 1FA767862BBD1305
2 changed files with 4 additions and 4 deletions

View File

@ -267,7 +267,7 @@ Find which shell is configured using `echo $SHELL`.
```shell ```shell
cat << "EOF" >> ~/.bash_profile cat << "EOF" >> ~/.bash_profile
export PATH=${PATH}:/usr/local/sbin export PATH=$PATH:/usr/local/sbin
EOF EOF
source ~/.bash_profile source ~/.bash_profile
``` ```
@ -276,7 +276,7 @@ source ~/.bash_profile
```shell ```shell
cat << "EOF" >> ~/.zshrc cat << "EOF" >> ~/.zshrc
export PATH=${PATH}:/usr/local/sbin export PATH=$PATH:/usr/local/sbin
EOF EOF
source ~/.zshrc source ~/.zshrc
``` ```

View File

@ -38,7 +38,7 @@ Find which shell is configured using `echo $SHELL`.
```shell ```shell
cat << "EOF" >> ~/.bash_profile cat << "EOF" >> ~/.bash_profile
export PATH=${PATH}:/usr/local/sbin export PATH=$PATH:/usr/local/sbin
EOF EOF
source ~/.bash_profile source ~/.bash_profile
``` ```
@ -47,7 +47,7 @@ source ~/.bash_profile
```shell ```shell
cat << "EOF" >> ~/.zshrc cat << "EOF" >> ~/.zshrc
export PATH=${PATH}:/usr/local/sbin export PATH=$PATH:/usr/local/sbin
EOF EOF
source ~/.zshrc source ~/.zshrc
``` ```