Ниже я показываю структуру моих файлов, часть кода в каждом из них и то, что я делаю, чтобы все это было готово к использованию.
СОСТАВ
~/
.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'
.профиль
#
# # 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'
Когда я захожу в Terminal.app или iTerm.app и пытаюсь запустить source
с ~/.bashrc
, ~/.bash_profile
, или ~/.profile
, он останавливается и в конечном итоге вылетает. Я не очень хорошо разбираюсь в настройке всего этого, но я знаю, что мне нужно, чтобы это перестало быть придурком, поэтому любая информация о том, что я делаю неправильно, или что может быть не так с моей настройкой, будет очень полезна. Если вы просто знаете, как это исправить, это тоже было бы здорово.
РЕДАКТИРОВАТЬ:
В продолжение комментария:
$ </proc/$$/cmdline tr '\0' '\n'
bash: /proc/93005/cmdline: No such file or directory
$ bash -i <-[this stalls]
$ bash -li <-[this stalls as well]
Мне все равно, придется ли мне вручную это делать или нет. Я бы предпочел не делать этого вручную, но я не уверен, что еще делать. Я думаю, это была просто последняя отчаянная попытка заставить все это работать правильно для меня.
Также, когда я открываю iTerm, bash не очень хорошо запускается. Мне нужно, opt+C
чтобы иметь возможность вводить какие-либо команды.