[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
# ./.bash_profile
# Get the aliases and functions
if [ -f $HOME/.bashrc ]; then
source $HOME/.bashrc
fi
# ./.bashrc
# bash basic configration file
umask 022
ulimit -c 0
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin
PS1="\u[\h:\w]$ "
alias cp='/bin/cp -i'
alias hist='history 20'
alias la='/bin/ls -AFs'
alias ll='/bin/ls -lF'
alias ls='/bin/ls -F'
alias lsa='/bin/ls -d .*'
alias mv='/bin/mv -i'
alias rm='/bin/rm -i'
alias x='exit'
path | 優先順位 |
ログイン時
(通常)
|
対話型シェル 起動時 |
説明 | |
profile | /etc/profile | 1 | ○ |
初期設定ファイル
全ユーザーに適応される
|
|
.bash_profile | ~/.bash_profile | 2 | ○ |
ログイン時に読み込まれる
|
|
.bash_login | ~/.bash_login | 3 | ○ | ログイン時に読み込まれる .bash_profileが存在しない場合に利用される |
|
.profile | ~/.profile | 4 | ○ | ログイン時に読み込まれる .bash_profile、.bash_loginが存在しない場合に利用される |
|
.bashrc | ~/.bashrc | - | ○ | 対話型シェル起動時に読み込まれる |