5 .bashrcを作る ホームディレクトリで $ touch .bashrc ってやると作れる。 terminalの$の前の部分を変えたりした。詳しくはhttp://www.yoheim.net/blog.php?q=20140309 そんでもって.bash_profileを作り、そこに if [ -f ~/.bashrc ] ; then . ~/.bashrc fi と書くと、勝手に.bashrcを読み込んでくれるようになる。 alias ls='ls -G' と書くとlsで色がつく。