Why linux(Debian 9) don not use my own alias in bashrc?

Viewed 30

I want to add my own command in linux terminal, but when i changed my bashrc with root, and use "idea" in term it looks like

bash: alias: idea: not found

but it must to work

alias idea='cd /Java/idea-IC-222.3739.54/bin; bash idea.sh'

1 Answers

I just have to use source .bashrc to include bashrc

Related