我想做的事:加载别名
别名:alias notes='cd ~/project/notes'
我的系统:Ubuntu 16.04和gnome终端3.18.3
在我的主目录中有以下 bash 相关文件:
.bash_history
.bash_logout
.bashrc
.profile
我已经写了这个别名,.profile
但它没有被加载。我也创建了(后来删除了).bash_profile
并将其放在那里,但没有运气。
有什么建议么?
答案1
编辑.bashrc
nano ~/.bashrc
添加alias notes='cd ~/project/notes'
并保存文件。
运行. ~/.bashrc
以激活现有终端中的别名。