Bash

小目次

基本設定

  1. ログイン時に一度だけ設定したい内容を「.bash_profile」に記述
  2. シェルを開くたびに設定したい内容を「.bashrc」に記述
.bash_profile への記述
# .bash_profile
# Source global definitions
if [ -f /etc/bashrc ]; then
  . /etc/bashrc
fi

# Source personal definitions
if [-f ‾/.bashrc]; then
  . ‾/.bashrc
fi
.bashrc への記述
# .bashrc
CVSROOT=/Users/cvs
export CVS

PATH=$HOME/bin:/usr/local/bin:$PATH
PS1="[¥w]¥n> "

# set aliases
alias ls="ls -FCx"     # 水平方向にソート



とみくら まさや(vzx01036@nifty.com) $ Date: 2006/02/22 $