El problema está en el título, pero permítame agregar algunos detalles aquí.
Estoy ejecutando en OS X 10.10.5 (14F27)
. Utilizando por defecto Terminal.app
.
Contenido de los archivos de configuración
Contenido de /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
Contenido de /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
Contenido de ~/.profile
echo " # reading ~/.profile"
...
Contenido de ~/.bashrc
echo " # reading ~/.bashr"
...
source /etc/profile
...
Contenido de ~/.bash_profile
echo " # reading ~/.bash_profile"
source ~/.profile
source ~/.bashrc
Salida de las llamadas sh
y bash
Así que aquí está la salida de invocar 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$
Como puede ver, cuando llama a sh
, no carga ninguna configuración. ¿Hay algo roto en mi entorno o se espera?