mirror of
https://github.com/sunknudsen/privacy-guides.git
synced 2025-02-22 16:53:56 +00:00
Improved syntax
This commit is contained in:
parent
ddee667ecf
commit
cfe623a169
@ -267,7 +267,7 @@ Find which shell is configured using `echo $SHELL`.
|
||||
|
||||
```shell
|
||||
cat << "EOF" >> ~/.bash_profile
|
||||
export PATH=${PATH}:/usr/local/sbin
|
||||
export PATH=$PATH:/usr/local/sbin
|
||||
EOF
|
||||
source ~/.bash_profile
|
||||
```
|
||||
@ -276,7 +276,7 @@ source ~/.bash_profile
|
||||
|
||||
```shell
|
||||
cat << "EOF" >> ~/.zshrc
|
||||
export PATH=${PATH}:/usr/local/sbin
|
||||
export PATH=$PATH:/usr/local/sbin
|
||||
EOF
|
||||
source ~/.zshrc
|
||||
```
|
||||
|
@ -38,7 +38,7 @@ Find which shell is configured using `echo $SHELL`.
|
||||
|
||||
```shell
|
||||
cat << "EOF" >> ~/.bash_profile
|
||||
export PATH=${PATH}:/usr/local/sbin
|
||||
export PATH=$PATH:/usr/local/sbin
|
||||
EOF
|
||||
source ~/.bash_profile
|
||||
```
|
||||
@ -47,7 +47,7 @@ source ~/.bash_profile
|
||||
|
||||
```shell
|
||||
cat << "EOF" >> ~/.zshrc
|
||||
export PATH=${PATH}:/usr/local/sbin
|
||||
export PATH=$PATH:/usr/local/sbin
|
||||
EOF
|
||||
source ~/.zshrc
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user