minus-squareAnn Onymous@lemmy.blahaj.zonetoLinux@lemmy.ml•Bash not sourcing .profile automatically in Debian 11linkfedilinkEnglisharrow-up3·2 years agoDoes your .bashrc actually source .bash_profile? Add [ ! -f "~/.bash_profile" ] || . "~/.bash_profile" (.bash_profile doesn’t exist or source it) to the end if not. linkfedilink
minus-squareAnn Onymous@lemmy.blahaj.zonetoLinux@lemmy.ml•Thousands of images on Docker Hub leak auth secrets, private keyslinkfedilinkEnglisharrow-up1·2 years agoRemove the trailing dot from the url: https://arxiv.org/pdf/2307.03958.pdf linkfedilink
Does your .bashrc actually source .bash_profile? Add
[ ! -f "~/.bash_profile" ] || . "~/.bash_profile"
(.bash_profile doesn’t exist or source it) to the end if not.