2가지 방법이 있다.
* 모든 사용자가 일괄적으로 적용하기
- /etc/profile
예제)
~~
~~
export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC
for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
if [ "$PS1" ]; then
. $i
else
. $i >/dev/null 2>&1
fi
fi
done
unset i
unset pathmunge
alias ll='ls -l -h --color=tty'
* 유저별 사용
- /home/계정/.bashrc (Bon Shell)
- /home/계정/.cshrc (C Shell)










