X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.bashrc;h=a6f9e08f03643920236479f9ca9511433a38ecf7;hb=fe633c1514aca202a7da45fd37d638602bf96734;hp=4a2414509a2936ec79bcd8c2867adebca5280562;hpb=b6806f08ea520931307aabd1d9e5c0ad5370057c;p=dotfiles.git diff --git a/.bashrc b/.bashrc index 4a24145..a6f9e08 100644 --- a/.bashrc +++ b/.bashrc @@ -6,6 +6,14 @@ # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples +# Copied from .profile to do minor initialization for non-interactive non-login-shells +umask 077 + +PATH="$HOME"/bin:"$HOME"/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + +# Make `ssh host date` to display in 24-hour format +LANG=C + # If not running interactively, don't do anything case $- in *i*) ;; @@ -30,7 +38,6 @@ shopt -s checkwinsize [ "`type -t ls`" = alias ] && unalias ls [ "`type -t ll`" = alias ] && unalias ll -[ "`type -t mc`" = alias ] && unalias mc back() { cd - "$@"; } functions() { typeset -f "$@"; } @@ -118,7 +125,7 @@ delegate_completion() { delegate_completion make m delegate_completion ping p -delegate_completion python python2.7 python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 +delegate_completion python python2.7 python3.4 python3.5 python3.6 python3.7 python3.8 python3.9 python3.10 DELEGARE_NOSPACE=1 delegate_completion rsync r rsync_cgmn rsync_cgmn_recode rsync_cgmn_recode2 delegate_completion ssh s delegate_completion wget wget-m wget-wrapper ww @@ -138,11 +145,11 @@ fi if type -p pip >/dev/null 2>&1 || type -p pip3 >/dev/null 2>&1; then _pip_completion_loader() { eval "`pip$PY_VER completion --bash`" - complete -F _pip_completion pip pip2 pip2.7 pip3 pip3.4 pip3.5 pip3.6 pip3.7 pip3.8 pip3.9 + complete -F _pip_completion pip pip2 pip2.7 pip3 pip3.4 pip3.5 pip3.6 pip3.7 pip3.8 pip3.9 pip3.10 unset _pip_completion_loader return 124 } - complete -F _pip_completion_loader pip pip2 pip2.7 pip3 pip3.4 pip3.5 pip3.6 pip3.7 pip3.8 pip3.9 + complete -F _pip_completion_loader pip pip2 pip2.7 pip3 pip3.4 pip3.5 pip3.6 pip3.7 pip3.8 pip3.9 pip3.10 fi #if which pyenv >/dev/null 2>&1; then