Skip to content

Instantly share code, notes, and snippets.

@oskarnrk
Created December 5, 2014 10:11
Show Gist options
  • Save oskarnrk/48b339a5d7e483b4dabd to your computer and use it in GitHub Desktop.
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)
#!/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