Bash würde ignorieren, ~/.profile
wenn es ~/.bash_profile
existiert. Sie müssen also prüfen, ob .bash_profile
es da ist. Und um sicherzugehen, müssen Sie alle diese Einstellungen in .bashrc
und source
in konfigurieren .profile
. Zum Beispiel:
$ cat ~/.bash_profile [[ $- == *i* ]] || return0 source ~/.bashrc $ cat ~/.bashrc [[ $- == *i* ]] || return 0 export HISTSIZE=100000 export HISTFILESIZE=100000 $