File: dot.bashrc

package info (click to toggle)
language-env 0.64
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,588 kB
  • ctags: 125
  • sloc: perl: 6,243; makefile: 83; tcl: 64; sh: 18
file content (35 lines) | stat: -rw-r--r-- 812 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# s comment -*-coding: euc-kr;-*-
This file is executed by .bash_profile file.
END
  .bash_profile  մϴ.
END

umask 022
eval `/usr/bin/dircolors`
LESSCHARSET='iso8859'

if [ "$DISPLAY" ] ; then
    PROMPT_COMMAND='echo -ne "\033]2;$LOGNAME@$HOSTNAME : $PWD\007\033]1;\007"'
    PS1='\u@\h:\w\$ '
    LS_OPTIONS='--color=auto'
    LANG='ko_KR.eucKR'
    XMODIFIERS='@im=nabi
elif [ "${TERM:0:5}" = "linux" ] ; then
    PS1='\u@\h:\w\$ '
    LS_OPTIONS='--color=auto'
    LANG='C'
else
    PS1='\u@\h:\w\$ '
    LS_OPTIONS='--classify'
    LANG='ko_KR.eucKR'
fi

export PATH LANG LESSCHARSET XMODIFIERS

alias ls='ls $LS_OPTIONS'
alias l='ls $LS_OPTIONS -l'
alias la='ls $LS_OPTIONS -al'
alias jfbterm='LANG=ko_KR.eucKR /usr/bin/jfbterm'
#alias emacs='LANG=C emacs'
#alias telnet='telnet -L'