# HG changeset patch # User IBBoard # Date 1641933890 0 # Node ID 39abe6b6233feeed5b02866a60403e0ea4b5c5da # Parent a94a1b5ea1729de7ac7454addc6b668235c70fe9 Add user's local bin dir to path This lets us run things like DVC diff -r a94a1b5ea172 -r 39abe6b6233f bashrc --- a/bashrc Tue Jan 11 20:29:27 2022 +0000 +++ b/bashrc Tue Jan 11 20:44:50 2022 +0000 @@ -17,7 +17,8 @@ test -s ~/.alias && . ~/.alias || true # Add sbins to path to make life easier (e.g. /sbin/ifconfig) -export PATH=/sbin:/usr/sbin:/usr/local/sbin:$PATH +# Also add our hidden bin directory +export PATH=~/.local/bin:/sbin:/usr/sbin:/usr/local/sbin:$PATH #Disable man page number prompts - where there's more than one, we normally want the default (user command) version export MAN_POSIXLY_CORRECT=1