When I log in, I see the error:
bash: alias: alias: not found
If I source
my .bashrc
file, the message appears again.
What is causing this?
When I log in, I see the error:
bash: alias: alias: not found
If I source
my .bashrc
file, the message appears again.
What is causing this?
I had the same issue, so the solution is to follow simply rules.
no other symbols between equal sign.
I had whitespaces between the sign and the
source ~/.bashrc
always failed for me.so be attentive
It turns out that a line feed had been removed from
~/.bashrc
, giving:Breaking the first line into two commands fixes the error.
In my case, removing spaces in
alias = ls -alF
solved the problem.You can put quotes around the commands you are aliasing. You can even put them around the alias, too.
Newlines are also a problem. Widows-saved
.bashrc
file caused errors in Ubuntu virtual machine:I ran
dos2unix .bashrc
to convert the line endings, and then everything worked.My problem is solved when I remove the space in
to
I think you can do this:
Remember to restart the terminal after you changed the alias in
.bashrc
!!!