diff --git a/how-to-configure-self-hosted-vpn-kill-switch-using-pf-firewall-on-macos/README.md b/how-to-configure-self-hosted-vpn-kill-switch-using-pf-firewall-on-macos/README.md index 8e29945..5e15918 100644 --- a/how-to-configure-self-hosted-vpn-kill-switch-using-pf-firewall-on-macos/README.md +++ b/how-to-configure-self-hosted-vpn-kill-switch-using-pf-firewall-on-macos/README.md @@ -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 ``` diff --git a/how-to-spoof-mac-address-and-hostname-automatically-at-boot-on-macos/README.md b/how-to-spoof-mac-address-and-hostname-automatically-at-boot-on-macos/README.md index 7a646cd..268826b 100644 --- a/how-to-spoof-mac-address-and-hostname-automatically-at-boot-on-macos/README.md +++ b/how-to-spoof-mac-address-and-hostname-automatically-at-boot-on-macos/README.md @@ -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 ```