Bash
如何為圖形終端模擬器載入 bash 別名
我正在嘗試做的事情:載入別名
別名:
alias notes='cd ~/project/notes'
我的系統:Ubuntu 16.04 和 gnome 終端 3.18.3
在我的主目錄中有以下 bash 相關文件:
.bash_history
.bash_logout
.bashrc
.profile
我已經寫了這個別名,
.profile
但它沒有被載入。我還創建(後來刪除).bash_profile
並將其放在那裡,但沒有運氣。有什麼建議麼?
編輯
.bashrc
nano ~/.bashrc
添加
alias notes='cd ~/project/notes'
並保存文件。執行
. ~/.bashrc
以啟動現有終端中的別名。