Created
December 5, 2014 10:11
-
-
Save oskarnrk/48b339a5d7e483b4dabd to your computer and use it in GitHub Desktop.
Add /home/$USER/bin directory to path. (In Ubuntu: use this code in .bashrc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -d "$HOME/bin" ] ; then | |
PATH="$HOME/bin:$PATH" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment