"~/.profile"의 두 판 사이의 차이

(새 문서: ;/root/.profile ;.profile ==내용== <source lang='bash'> # ~/.profile: executed by Bourne-compatible login shells. if [ "$BASH" ]; then if [ -f ~/.bashrc ]; then . ~/.bashrc ...)
 
14번째 줄: 14번째 줄:
mesg n
mesg n
</source>
</source>
==같이 보기==
*[[$BASH]]
*[[/root/.bashrc]]


[[분류: /root]]
[[분류: /root]]

2014년 4월 4일 (금) 21:19 판

/root/.profile
.profile

1 내용

Bash
Copy
# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

mesg n

2 같이 보기