source ~/.bashrc ou ~/.profile ou ~/.bash_profile terminal de paralisação

source ~/.bashrc ou ~/.profile ou ~/.bash_profile terminal de paralisação

Abaixo, estou exibindo a estrutura dos meus arquivos, parte do código de cada um e o que faço para tentar obter tudo original e pronto para uso.

ESTRUTURA

~/
  .bash_profile
  .bashrc
  .profile

.bashrc

#-------------------------------------------------------------
# Source global definitions (if any)
#-------------------------------------------------------------
if [ -f $(brew --prefix)/etc/bash_completion ]; then
  . $(brew --prefix)/etc/bash_completion
fi

if [ -f /etc/bashrc ]; then
    . /etc/bashrc   # --> Read /etc/bashrc, if present.
fi

if [ -f ~/.git-completion.bash ]; then
  . ~/.git-completion.bash
fi

.bash_profile

#
# # Setting PATH for Python 3.5
# # The orginal version is saved in .bash_profile.pysave
PATH="/bin:/usr/bin:/usr/local/bin" # Make sure to use double quotes not single quotes And on a new line 
export PATH

. /etc/profile
. ~/.git-completion.bash

if [ -f ~/bin/.bashrc ]; then
    . ~/bin/.bashrc   # --> Read ~/bashrc, if present.
fi

if [ -f /etc/bashrc ]; then
    . /etc/bashrc   # --> Read /etc/bashrc, if present.
fi

# ENVIRONMENT VARIABLES

# add my ~/bin dir to path
PATH=${PATH}:~/bin
export PATH

# simple prompt
# default macOS prompt is: \h:\W \u\$
export PS1="\W \$ "

# enable Terminal color
export CLICOLOR=1

# Pretty colors
Default=$'\e[0m'
Italic=$'\e[3m'
Black=$'\e[30m'
Red=$'\e[31m'
Green=$'\e[32m'
Yellow=$'\e[33m'
Blue=$'\e[34m'
LightBlue=$'\e[36m'
Magenta=$'\e[35m'
Cyan=$'\e[36m'
White=$'\e[37m'
NewLine=$'\n'

.perfil

#
# # Setting PATH for Python 3.5
# # The orginal version is saved in .bash_profile.pysave
PATH="/bin:/usr/bin:/usr/local/bin" # Make sure to use double quotes not single quotes And on a new line 
export PATH

# ENVIRONMENT VARIABLES

# add my ~/bin dir to path
PATH=${PATH}:~/bin
export PATH

# source files
source /etc/profile
source ~/.git-completion.bash
source ~/bin/.bash_profile
if [ -f ~/.bash_profile ]; then
  . ~/.bash_profile
fi
if [ -f ~/bin/.bashrc ]; then
    . ~/bin/.bashrc   # --> Read ~/bashrc, if present.
fi

if [ -f /etc/bashrc ]; then
    . /etc/bashrc   # --> Read /etc/bashrc, if present.
fi

# simple prompt
# default macOS prompt is: \h:\W \u\$
export PS1="\W \$ "

# enable Terminal color
export CLICOLOR=1

# Pretty colors
Default=$'\e[0m'
Italic=$'\e[3m'
Black=$'\e[30m'
Red=$'\e[31m'
Green=$'\e[32m'
Yellow=$'\e[33m'
Blue=$'\e[34m'
LightBlue=$'\e[36m'
Magenta=$'\e[35m'
Cyan=$'\e[36m'
White=$'\e[37m'
NewLine=$'\n'

Quando entro em Terminal.app ou iTerm.app e tento executar sourcecom ~/.bashrc, ~/.bash_profile, ou ~/.profile, ele para e eventualmente trava. Não estou muito familiarizado com a configuração de tudo isso, mas sei que preciso deixar de ser um idiota, então qualquer informação sobre o que estou fazendo de errado ou o que pode estar errado com minha configuração seria muito apreciada. Se você souber como consertar isso, também seria incrível.

EDITAR:

Seguindo o comentário:

$ </proc/$$/cmdline tr '\0' '\n'
bash: /proc/93005/cmdline: No such file or directory

$ bash -i    <-[this stalls]

$ bash -li   <-[this stalls as well]

Eu não me importo se tenho que obter isso manualmente ou não. Prefiro não obtê-lo manualmente, mas não tenho certeza do que mais fazer. Acho que foi apenas um último esforço para tentar fazer com que tudo isso funcionasse bem para mim.

Além disso, quando abro o iTerm, o bash não começa bem. Eu tenho que opt+Cser capaz de digitar qualquer comando.

informação relacionada