Mercurial > ec-dotfiles
comparison rc/bashrc @ 332:db66d53e10ea
Canonical name for configs.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 19 Mar 2012 12:52:12 +0700 |
parents | rc/bash@b27e43878127 |
children | 4d3288c19e91 |
comparison
equal
deleted
inserted
replaced
331:00777bea96fb | 332:db66d53e10ea |
---|---|
1 #!/usr/bin/env bash | |
2 | |
3 case "${-}" in | |
4 *i*) ;; | |
5 *) return;; | |
6 esac | |
7 | |
8 if [ "${ECOS_BASH_LOADED}" != "yes" ]; then | |
9 ECOS_BASH_LOADED="yes" | |
10 else | |
11 return | |
12 fi | |
13 | |
14 [ -f "${HOME}/.ecos_bash.before" ] && . "${HOME}/.ecos_bash.before" | |
15 | |
16 _org_path="${PATH}" | |
17 export PATH="${HOME}/.ecos_bin:${HOME}/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" | |
18 | |
19 shopt -s histappend | |
20 PROMPT_COMMAND="history -a; history -n" | |
21 export HISTFILESIZE=10000 | |
22 export HISTCONTROL=ignoredups | |
23 | |
24 export PAGER="more" | |
25 export EDITOR="vi" | |
26 export LANG="en_US.UTF-8" | |
27 export CLICOLOR= | |
28 export LSCOLORS="exfxcxdxbxegedabagacad" | |
29 export LS_COLORS= | |
30 export BLOCKSIZE=1K | |
31 export BLOCK_SIZE=si | |
32 | |
33 alias ls="ls -F" | |
34 alias rm="rm -i" | |
35 alias rd="rdesktop -g 1280x600 -K -a 15 -x m -z -P -r sound:off -r clipboard:CLIPBOARD -5" | |
36 | |
37 _has_gnu_ls= | |
38 _has_gnu_grep= | |
39 _ls="ls" | |
40 _grep="grep" | |
41 _has_posix_grep=y | |
42 | |
43 case "$(uname -s)" in | |
44 Linux) | |
45 _has_gnu_ls=y | |
46 _has_gnu_grep=y | |
47 ;; | |
48 SunOS) | |
49 _has_posix_grep=n | |
50 [ -x /usr/gnu/bin/ls ] && _has_gnu_ls=y | |
51 [ -x /usr/gnu/bin/grep ] && _has_gnu_grep=y | |
52 # Higher priority directories | |
53 for i in {/opt/csw,/usr/gnu}/{,s}bin; do | |
54 [ -d "${i}" ] && PATH="${i}:${PATH}" | |
55 done | |
56 for i in /usr/{sfw,xpg4}/bin; do | |
57 [ -d "${i}" ] && PATH="${PATH}:${i}" | |
58 done | |
59 alias ping="ping -s" | |
60 alias ping6="ping -A inet6" | |
61 # Hello tmux. Perhaps one day we'll have title with dtterm. | |
62 # But for now we work this around by prepending tmux call with xterm-256color | |
63 # which hopefully exists. Otherwise we have to live with no title. | |
64 [ -f "/usr/share/lib/terminfo/x/xterm-256color" ] && has_xterm256c=y | |
65 [ -f "/usr/share/lib/terminfo/s/screen" ] && has_screen=y | |
66 case "${TERM}" in | |
67 xterm*) | |
68 if [ -f "/usr/share/lib/terminfo/x/xterm-256color" ]; then | |
69 export TERM="xterm-256color" | |
70 else | |
71 echo "No xterm-256color terminal, using dtterm. Tmux title won't work." | |
72 export TERM="dtterm" | |
73 fi | |
74 ;; | |
75 screen) | |
76 [ -f "/usr/share/lib/terminfo/s/screen" ] || export TERM="dtterm" | |
77 ;; | |
78 esac | |
79 if command -v ggrep > /dev/null 2>&1; then | |
80 _has_gnu_grep=y | |
81 _grep="ggrep" | |
82 fi | |
83 if command -v gls > /dev/null 2>&1; then | |
84 _has_gnu_ls=y | |
85 _ls="gls" | |
86 fi | |
87 ;; | |
88 FreeBSD) | |
89 # Invalid characters when using en_US.UTF-8. | |
90 alias man="man -o" | |
91 # Multi CPU awesomeness. | |
92 alias top="top -P" | |
93 ;; | |
94 OpenBSD) | |
95 PATH="${PATH}:/usr/X11R6/bin" | |
96 if command -v gls > /dev/null 2>&1; then | |
97 _has_gnu_ls=y | |
98 _ls="gls" | |
99 elif command -v colorls > /dev/null 2>&1; then | |
100 alias ls="colorls -F" | |
101 fi | |
102 ;; | |
103 NetBSD) | |
104 PATH="${PATH}:/usr/pkg/bin:/usr/pkg/sbin" | |
105 if command -v gls > /dev/null 2>&1; then | |
106 _has_gnu_ls=y | |
107 _ls="gls" | |
108 elif command -v colorls > /dev/null 2>&1; then | |
109 alias ls="colorls -F" | |
110 fi | |
111 ;; | |
112 CYGWIN*) | |
113 export PATH="${PATH}:${_org_path}" | |
114 ;; | |
115 esac | |
116 | |
117 if [ "${_has_gnu_ls}" = y ]; then | |
118 alias ls="${_ls} -F --color=auto" | |
119 LS_COLORS='no=00:fi=00:di=36:ln=35:pi=30;44:so=35;44:do=35;44:bd=33;44:cd=37;44:or=05;37;41:mi=05;37;41:ex=01;31:*.cmd=01;31:*.exe=01;31:*.com=01;31:*.bat=01;31:*.reg=01;31:*.app=01;31:*.txt=32:*.org=32:*.md=32:*.mkd=32:*.h=32:*.c=32:*.C=32:*.cc=32:*.cxx=32:*.objc=32:*.sh=32:*.csh=32:*.zsh=32:*.el=32:*.vim=32:*.java=32:*.pl=32:*.pm=32:*.py=32:*.rb=32:*.hs=32:*.php=32:*.htm=32:*.html=32:*.shtml=32:*.xml=32:*.rdf=32:*.css=32:*.js=32:*.man=32:*.0=32:*.1=32:*.2=32:*.3=32:*.4=32:*.5=32:*.6=32:*.7=32:*.8=32:*.9=32:*.l=32:*.n=32:*.p=32:*.pod=32:*.tex=32:*.bmp=33:*.cgm=33:*.dl=33:*.dvi=33:*.emf=33:*.eps=33:*.gif=33:*.jpeg=33:*.jpg=33:*.JPG=33:*.mng=33:*.pbm=33:*.pcx=33:*.pdf=33:*.pgm=33:*.png=33:*.ppm=33:*.pps=33:*.ppsx=33:*.ps=33:*.svg=33:*.svgz=33:*.tga=33:*.tif=33:*.tiff=33:*.xbm=33:*.xcf=33:*.xpm=33:*.xwd=33:*.xwd=33:*.yuv=33:*.aac=33:*.au=33:*.flac=33:*.mid=33:*.midi=33:*.mka=33:*.mp3=33:*.mpa=33:*.mpeg=33:*.mpg=33:*.ogg=33:*.ra=33:*.wav=33:*.anx=33:*.asf=33:*.avi=33:*.axv=33:*.flc=33:*.fli=33:*.flv=33:*.gl=33:*.m2v=33:*.m4v=33:*.mkv=33:*.mov=33:*.mp4=33:*.mp4v=33:*.mpeg=33:*.mpg=33:*.nuv=33:*.ogm=33:*.ogv=33:*.ogx=33:*.qt=33:*.rm=33:*.rmvb=33:*.swf=33:*.vob=33:*.wmv=33:*.doc=31:*.docx=31:*.rtf=31:*.dot=31:*.dotx=31:*.xls=31:*.xlsx=31:*.ppt=31:*.pptx=31:*.fla=31:*.psd=31:*.7z=1;35:*.apk=1;35:*.arj=1;35:*.bin=1;35:*.bz=1;35:*.bz2=1;35:*.cab=1;35:*.deb=1;35:*.dmg=1;35:*.gem=1;35:*.gz=1;35:*.iso=1;35:*.jar=1;35:*.msi=1;35:*.rar=1;35:*.rpm=1;35:*.tar=1;35:*.tbz=1;35:*.tbz2=1;35:*.tgz=1;35:*.tx=1;35:*.war=1;35:*.xpi=1;35:*.xz=1;35:*.z=1;35:*.Z=1;35:*.zip=1;35:*.ANSI-30-black=30:*.ANSI-01;30-brblack=01;30:*.ANSI-31-red=31:*.ANSI-01;31-brred=01;31:*.ANSI-32-green=32:*.ANSI-01;32-brgreen=01;32:*.ANSI-33-yellow=33:*.ANSI-01;33-bryellow=01;33:*.ANSI-34-blue=34:*.ANSI-01;34-brblue=01;34:*.ANSI-35-magenta=35:*.ANSI-01;35-brmagenta=01;35:*.ANSI-36-cyan=36:*.ANSI-01;36-brcyan=01;36:*.ANSI-37-white=37:*.ANSI-01;37-brwhite=01;37:*.log=01;32:*~=01;32:*#=01;32:*.bak=01;33:*.BAK=01;33:*.old=01;33:*.OLD=01;33:*.org_archive=01;33:*.off=01;33:*.OFF=01;33:*.dist=01;33:*.DIST=01;33:*.orig=01;33:*.ORIG=01;33:*.swp=01;33:*.swo=01;33:*,v=01;33:*.gpg=34:*.gpg=34:*.pgp=34:*.asc=34:*.3des=34:*.aes=34:*.enc=34:'; | |
120 export LS_COLORS | |
121 fi | |
122 if [ "${_has_gnu_grep}" = y ]; then | |
123 alias grep="${_grep} --color=auto" | |
124 _has_posix_grep=y | |
125 fi | |
126 if [ "${_has_posix_grep}" = y ]; then | |
127 alias fgrep="grep -F" | |
128 alias egrep="grep -E" | |
129 fi | |
130 | |
131 unset _has_gnu_ls | |
132 unset _has_gnu_grep | |
133 unset _has_posix_grep | |
134 unset _ls | |
135 unset _grep | |
136 | |
137 # Custom application I usually install and safe to prioritize | |
138 for i in {"${HOME}/app","/opt"}/{tmux,ruby19,node,tarsnap,symon,nginx}/{bin,sbin}; do | |
139 [ -d "${i}" ] && PATH="${i}:${PATH}" | |
140 done | |
141 # New(?) rubygems bin PATH | |
142 for i in {"${HOME}/app","/opt"}/ruby19/lib/ruby/gems/1.9.1/bin; do | |
143 [ -d "${i}" ] && PATH="${i}:${PATH}" | |
144 done | |
145 | |
146 # MySQL in common locations highest priority since new = better. Also no compatibility problem. | |
147 # Cluster is superset of Enterprise/GPL so it gets highest priority. | |
148 # And use only one. | |
149 for mydir in {"${HOME}",/app{,s},/opt}/mysql/{{cluster,enterprise}/mysql/,}bin; do | |
150 if [ -d "${mydir}" ]; then | |
151 PATH="${mydir}:${PATH}" | |
152 break | |
153 fi | |
154 done | |
155 | |
156 # Mercurial is optional since it will be inconsistent with ssh ... hg if this one gets priority. | |
157 # And use only one. | |
158 for hgdir in {"${HOME}/app","/opt"}/mercurial{,/bin}; do | |
159 hgbin="${hgdir}/hg" | |
160 if [ -x "${hgbin}" ]; then | |
161 PATH="${PATH}:${hgdir}" | |
162 alias nhg="${hgbin}" | |
163 break | |
164 fi | |
165 done | |
166 | |
167 for supbindir in {"${HOME}/app","/opt"}/supervisor{,d}/bin; do | |
168 if [ -d "${supbindir}" ]; then | |
169 PATH="${PATH}:${supbindir}" | |
170 break | |
171 fi | |
172 done | |
173 | |
174 case "${TERM}" in | |
175 xterm*|screen*|dtterm*) | |
176 PROMPT_COMMAND='echo -ne "\033]0;'"${USER:-$LOGNAME}@$(uname -n)"': ${PWD}\007";'"${PROMPT_COMMAND}" | |
177 PS1='[\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\] \[\e[0;34m\]\W\[\e[0m\]]\$ ' | |
178 ;; | |
179 *) | |
180 PS1='[\u@\h \W]\$ ' | |
181 ;; | |
182 esac | |
183 | |
184 if command -v vim > /dev/null 2>&1; then | |
185 alias vi=vim | |
186 export EDITOR=vim | |
187 fi | |
188 | |
189 if command -v less > /dev/null 2>&1; then | |
190 alias less="less -Rins" | |
191 export PAGER="less -Rins" | |
192 fi | |
193 | |
194 rm -If "/tmp/.nonexistent.$(date '+%Y%m%d%H%M%S')" 2> /dev/null && alias rm="rm -I" | |
195 | |
196 [ -f "${HOME}/.ecos_bash.after" ] && . "${HOME}/.ecos_bash.after" |