Il problema è nel titolo, ma lasciatemi aggiungere alcuni dettagli qui.
Sto correndo su OS X 10.10.5 (14F27)
. Utilizzando Terminal.app
predefinito.
Contenuto dei file di configurazione
Contenuto di /etc/profile
echo " # reading /etc/profile"
# System-wide .profile for sh(1)
if [ -x /usr/libexec/path_helper ]; then
eval '/usr/libexec/path_helper -s'
fi
if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && . /etc/bashrc
fi
Contenuto di /etc/bashrc
echo " # reading /etc/bashrc"
# System-wide .bashrc file for interactive bash(1) shells.
if [ -z "$PS1" ]; then
return
fi
PS1='\h:\W \u\$ '
# Make bash check its window size after a process completes
shopt -s checkwinsize
# Tell the terminal about the working directory at each prompt.
if [ "$TERM_PROGRAM" == "Apple_Terminal" ] && [ -z "$INSIDE_EMACS" ]; then
update_terminal_cwd() {
# Identify the directory using a "file:" scheme URL,
# including the host name to disambiguate local vs.
# remote connections. Percent-escape spaces.
local SEARCH=' '
local REPLACE='%20'
local PWD_URL="file://$HOSTNAME${PWD//$SEARCH/$REPLACE}"
printf '\e]7;%s\a' "$PWD_URL"
}
PROMPT_COMMAND="update_terminal_cwd; $PROMPT_COMMAND"
fi
Contenuto di ~/.profile
echo " # reading ~/.profile"
...
Contenuto di ~/.bashrc
echo " # reading ~/.bashr"
...
source /etc/profile
...
Contenuto di ~/.bash_profile
echo " # reading ~/.bash_profile"
source ~/.profile
source ~/.bashrc
Output di chiamate sh
e bash
Quindi ecco l'output di invocare sh
.
$ sh
sh-3.2$
sh --login
# reading /etc/profile
# reading /etc/bashrc
# reading ~/.profile
d12frosted:~ d12frosted$
$ bash
# reading ~/.bashr
# reading /etc/profile
# reading /etc/bashrc
d12frosted:~ d12frosted$
$ bash --login
# reading /etc/profile
# reading /etc/bashrc
# reading ~/.bash_profile
# reading ~/.profile
# reading ~/.bashr
# reading /etc/profile
# reading /etc/bashrc
d12frosted:~ d12frosted$
Come puoi vedere, quando chiami sh
- non carica nessuna configurazione. C'è qualcosa di rotto nel mio ambiente o è previsto?