presunutie z .profile do .bashrc

master v3.11
Štefan Bystriansky 3 years ago
parent ea7161c32d
commit 5627eaf7e4
Signed by: stevo
GPG Key ID: 5584F1ECF6232C7B
  1. 19
      .bashrc
  2. 38
      .profile

@ -144,6 +144,25 @@ if ! shopt -oq posix; then
fi fi
fi fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
if [ -d "$HOME/.binenv" ] ; then
PATH="${HOME}/.binenv:$PATH"
source <(binenv completion bash)
fi
# set PATH so it includes cargo bin if it exists
if [ -d "$HOME/.cargo/bin" ] ; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
##TMUX pre automatické spustenie -> touch ~/.tmux.auto ##TMUX pre automatické spustenie -> touch ~/.tmux.auto

@ -16,22 +16,22 @@ if [ -n "$BASH_VERSION" ]; then
fi fi
fi fi
# set PATH so it includes user's private bin if it exists ## set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then #if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH" # PATH="$HOME/bin:$PATH"
fi #fi
#
# set PATH so it includes user's private bin if it exists ## set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then #if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH" # PATH="$HOME/.local/bin:$PATH"
fi #fi
#
if [ -d "$HOME/.binenv" ] ; then #if [ -d "$HOME/.binenv" ] ; then
PATH="${HOME}/.binenv:$PATH" # PATH="${HOME}/.binenv:$PATH"
source <(binenv completion bash) # source <(binenv completion bash)
fi #fi
#
# set PATH so it includes cargo bin if it exists ## set PATH so it includes cargo bin if it exists
if [ -d "$HOME/.cargo/bin" ] ; then #if [ -d "$HOME/.cargo/bin" ] ; then
export PATH="$HOME/.cargo/bin:$PATH" # export PATH="$HOME/.cargo/bin:$PATH"
fi #fi

Loading…
Cancel
Save