O erro é causado pela seguinte linha:
Source global definitions
Provavelmente não é um comando, mas um comentário. Prefira um #
para a linha e o erro deve ser eliminado.
# Source global definitions
Continuo recebendo o seguinte erro quando abro meu terminal. Estou executando o Fedora 19.
bash: Fonte: comando não encontrado
O erro acima também fez com que minha tela ficasse em branco quando tentei fazer o login. Em seguida, renomei por arquivos .bashrc e .bash_profile, e o sistema ficou bom. Então parece que o problema pode estar em um desses arquivos, mas não consigo dizer o que é.
Aqui estão os meus arquivos bashrc e bash_profile:
[gmahan@localhost ~]$ cat .bashrc
# .bashrc
[ -z "$PS1" ] && return
Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
[gmahan@localhost ~]$ cat .bash_profile
# .bash_profile
# Get the aliases and functions
if [-f ~/.bashrc]; then
. ~/.bashrc
fi
# User specific environment and startup programs
Alguém pode me dizer qual é o problema. Obrigado.
Tags bash