Load shrc files if the shell is interactive
This commit is contained in:
parent
3b6f524a3a
commit
a94cc10f72
5 changed files with 49 additions and 10 deletions
|
@ -6,7 +6,14 @@ fi
|
|||
|
||||
export BASH_ENV="$HOME/.bashrc"
|
||||
|
||||
export _acp_ignore_shrc=1
|
||||
if [ -r "$HOME/.profile" ]
|
||||
then
|
||||
. "$HOME/.profile"
|
||||
fi
|
||||
unset _acp_ignore_shrc
|
||||
|
||||
if [ -r "$HOME/.bashrc" ]
|
||||
then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
|
|
|
@ -1,4 +1,13 @@
|
|||
#!/bin/bash
|
||||
case "$-" in
|
||||
*i*)
|
||||
;;
|
||||
*)
|
||||
# Shell is not interactive.
|
||||
return 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -f /etc/bashrc ]
|
||||
then
|
||||
. /etc/bashrc
|
||||
|
|
|
@ -1,4 +1,18 @@
|
|||
#!/bin/sh
|
||||
if [ -n "$_acp_ignore_shrc" ]
|
||||
then
|
||||
return 1
|
||||
fi
|
||||
|
||||
case "$-" in
|
||||
*i*)
|
||||
;;
|
||||
*)
|
||||
# Shell is not interactive.
|
||||
return 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -d /var/acp ]
|
||||
then
|
||||
export ACP=/var/acp
|
||||
|
@ -294,11 +308,4 @@ tlscheck () {
|
|||
fi
|
||||
}
|
||||
|
||||
case "$-" in
|
||||
*i*)
|
||||
# Shell is interactive
|
||||
usermotd
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
usermotd
|
||||
|
|
|
@ -4,7 +4,14 @@ then
|
|||
. /etc/zprofile
|
||||
fi
|
||||
|
||||
if [ -e $HOME/.profile ]
|
||||
export _acp_ignore_shrc=1
|
||||
if [ -r "$HOME/.profile" ]
|
||||
then
|
||||
emulate sh -c ". $HOME/.profile"
|
||||
emulate sh -c '. "$HOME/.profile"'
|
||||
fi
|
||||
unset _acp_ignore_shrc
|
||||
|
||||
if [ -r "$HOME/.zshrc" ]
|
||||
then
|
||||
. "$HOME/.zshrc"
|
||||
fi
|
||||
|
|
|
@ -1,4 +1,13 @@
|
|||
#!/bin/zsh
|
||||
case "$-" in
|
||||
*i*)
|
||||
;;
|
||||
*)
|
||||
# Shell is not interactive.
|
||||
return 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -f /etc/zshrc ]
|
||||
then
|
||||
. /etc/zshrc
|
||||
|
|
Loading…
Reference in a new issue