/etc/profile 예시

System/Linux 2011. 10. 5. 11:33
SWOS# more /etc/profile
#!/bin/sh

export VISUAL=emacs
stty erase 

export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export TERM=vt100
export PS1=`hostname`'# '
export PS2='>'
export PS4='+' 
if [ -f /conf/TIMEZONE ] ; then
        export TZ=`cat /conf/TIMEZONE`
fi
bind '^I'=complete

# bash will terminate after 600 seconds idle time - no input
export TMOUT=3600

alias ls='ls -F'
alias l='ls -alF'
alias rm='rm -i'
alias h=history
alias run='/etc/secureworks start'
alias stop='/etc/secureworks stop'
alias dir='ls -alF'
alias sw='cd /opt/SECUREWORKS/current/'

# make core files by default
ulimit -S -c unlimited > /dev/null 2>&1

'System > Linux' 카테고리의 다른 글

일반 유저의 .rhosts 파일 생성 금지법  (0) 2011.11.01
TCP-Wrapper  (0) 2011.10.31
lsof , fuser, pgrep 명령어  (0) 2011.09.30
top 명령어  (0) 2011.09.27
ngrep 다운로드 및 사용법 (옵션)  (1) 2011.09.23
Posted by linuxism
,