首頁
返回
繼續
最後一頁
摘要
圖形
環境變數與個人化設定(二)
環境變數可由登入檔與環境設定檔事先設定, bash的設定檔如下:
/etc/profile 整個系統的設定檔
~/.bash_profile 登入環境設定檔
~/.bashrc shell啟動檔
~/.bash_logout 登出檔
執行設定檔可用 . 或 source
aliases(別名):讓使用者指定常用指令的簡略表達形式
alias l='ls -al'
unalias 取消別名