note on removing ~/.profile

This commit is contained in:
Luke Smith 2020-04-20 16:45:44 -04:00
parent a67bde70f0
commit f180dade4a
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

View file

@ -1,4 +1,9 @@
# Profile file. Runs on login. Environmental variables are set here. #!/bin/zsh
# zsh profile file. Runs on login. Environmental variables are set here.
# If you don't plan on reverting to bash, you can remove the link in ~/.profile
# to clean up.
# Adds `~/.local/bin` to $PATH # Adds `~/.local/bin` to $PATH
export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"