Mercurial > ec-dotfiles
annotate rc/bashrc @ 495:fea77cdcdb09
Size-customizable pwgen.
| author | edogawaconan <me@myconan.net> | 
|---|---|
| date | Fri, 20 Dec 2013 20:17:00 +0900 | 
| parents | e3648f0482e5 | 
| children | ffef7605f833 | 
| rev | line source | 
|---|---|
| 43 | 1 #!/usr/bin/env bash | 
| 2 | |
| 242 
ebfa844d2ef8
[bash] Also ensures interactive terminal.
 Edho Arief <edho@myconan.net> parents: 
238diff
changeset | 3 case "${-}" in | 
| 
ebfa844d2ef8
[bash] Also ensures interactive terminal.
 Edho Arief <edho@myconan.net> parents: 
238diff
changeset | 4 *i*) ;; | 
| 
ebfa844d2ef8
[bash] Also ensures interactive terminal.
 Edho Arief <edho@myconan.net> parents: 
238diff
changeset | 5 *) return;; | 
| 
ebfa844d2ef8
[bash] Also ensures interactive terminal.
 Edho Arief <edho@myconan.net> parents: 
238diff
changeset | 6 esac | 
| 
ebfa844d2ef8
[bash] Also ensures interactive terminal.
 Edho Arief <edho@myconan.net> parents: 
238diff
changeset | 7 | 
| 117 
548cf46e9cb4
Ensures no double loading using C-style variable test.
 Edho Prima Arief <edho@myconan.net> parents: 
112diff
changeset | 8 if [ "${ECOS_BASH_LOADED}" != "yes" ]; then | 
| 122 
eacc854eae67
Export should be used since it inherited to subshell (eg. tmux). Also hasten exit instead of fi on the bottom of file.
 Edho Prima Arief <edho@myconan.net> parents: 
117diff
changeset | 9 ECOS_BASH_LOADED="yes" | 
| 
eacc854eae67
Export should be used since it inherited to subshell (eg. tmux). Also hasten exit instead of fi on the bottom of file.
 Edho Prima Arief <edho@myconan.net> parents: 
117diff
changeset | 10 else | 
| 
eacc854eae67
Export should be used since it inherited to subshell (eg. tmux). Also hasten exit instead of fi on the bottom of file.
 Edho Prima Arief <edho@myconan.net> parents: 
117diff
changeset | 11 return | 
| 
eacc854eae67
Export should be used since it inherited to subshell (eg. tmux). Also hasten exit instead of fi on the bottom of file.
 Edho Prima Arief <edho@myconan.net> parents: 
117diff
changeset | 12 fi | 
| 117 
548cf46e9cb4
Ensures no double loading using C-style variable test.
 Edho Prima Arief <edho@myconan.net> parents: 
112diff
changeset | 13 | 
| 71 | 14 [ -f "${HOME}/.ecos_bash.before" ] && . "${HOME}/.ecos_bash.before" | 
| 49 
b924652e169d
[bash] Various tweaks: prompt, unset for check variables, etc
 Edho Prima Arief <me@myconan.net> parents: 
48diff
changeset | 15 | 
| 385 | 16 _org_path="${PATH}" | 
| 386 | 17 | 
| 18 # Basic PATH | |
| 468 | 19 export PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/games" | 
| 385 | 20 | 
| 21 # pkgsrc | |
| 22 if test -d /usr/pkg; then | |
| 23 PATH="${PATH}:/usr/pkg/bin:/usr/pkg/sbin" | |
| 24 if test -d /usr/pkg/java/openjdk7; then | |
| 25 # OpenJDK 7 in pkgsrc | |
| 26 PATH="${PATH}:/usr/pkg/java/openjdk7/bin" | |
| 27 fi | |
| 28 fi | |
| 460 | 29 | 
| 387 | 30 # OpenBSD X11 | 
| 31 test -d /usr/X11R6/bin && PATH="${PATH}:/usr/X11R6/bin" | |
| 32 # PostgreSQL Yum | |
| 440 
abbdb936a36a
Automated pgsql yum version detect.
 Edho Arief <edho@myconan.net> parents: 
439diff
changeset | 33 # Defaults to last version available. | 
| 
abbdb936a36a
Automated pgsql yum version detect.
 Edho Arief <edho@myconan.net> parents: 
439diff
changeset | 34 _pgbindir=(/usr/pgsql-*/bin) | 
| 
abbdb936a36a
Automated pgsql yum version detect.
 Edho Arief <edho@myconan.net> parents: 
439diff
changeset | 35 _pgbindir="${_pgbindir[@]:(-1)}" | 
| 
abbdb936a36a
Automated pgsql yum version detect.
 Edho Arief <edho@myconan.net> parents: 
439diff
changeset | 36 test -d "${_pgbindir}" && PATH="${_pgbindir}:${PATH}" | 
| 
abbdb936a36a
Automated pgsql yum version detect.
 Edho Arief <edho@myconan.net> parents: 
439diff
changeset | 37 unset _pgbindir | 
| 385 | 38 | 
| 439 | 39 # PostgreSQL EnterpriseDB | 
| 40 # Defaults to last version available. | |
| 41 _pgbindir=(/opt/PostgreSQL/*/bin) | |
| 42 _pgbindir="${_pgbindir[@]:(-1)}" | |
| 43 test -d "${_pgbindir}" && PATH="${_pgbindir}:${PATH}" | |
| 44 unset _pgbindir | |
| 45 | |
| 372 | 46 # Nuke currently defined functions | 
| 396 | 47 unset -f $(set | grep ' \(\)$' | cut -d ' ' -f 1) | 
| 372 | 48 | 
| 374 | 49 # Nuke bash-completion | 
| 50 complete -r | |
| 51 | |
| 380 | 52 # Nuke aliases | 
| 53 unalias -a | |
| 54 | |
| 111 
fd8dbd4bb758
ls color for freebsd, history control.
 Edho Prima Arief <edho@myconan.net> parents: 
106diff
changeset | 55 shopt -s histappend | 
| 283 
108e05eb9b5c
Not just append but also read.
 Edho Arief <edho@myconan.net> parents: 
282diff
changeset | 56 PROMPT_COMMAND="history -a; history -n" | 
| 462 
a7e5a165e981
Hopefully better history stuff.
 Edho Arief <edho@myconan.net> parents: 
461diff
changeset | 57 export HISTFILESIZE=100000 | 
| 
a7e5a165e981
Hopefully better history stuff.
 Edho Arief <edho@myconan.net> parents: 
461diff
changeset | 58 export HISTCONTROL=ignoreboth:erasedups | 
| 
a7e5a165e981
Hopefully better history stuff.
 Edho Arief <edho@myconan.net> parents: 
461diff
changeset | 59 export HISTSIZE=10000 | 
| 111 
fd8dbd4bb758
ls color for freebsd, history control.
 Edho Prima Arief <edho@myconan.net> parents: 
106diff
changeset | 60 | 
| 414 | 61 export PAGER=more | 
| 62 export EDITOR=vi | |
| 89 
29bd7f6ef58a
Explicit LANG declaration.
 Edho Prima Arief <me@myconan.net> parents: 
60diff
changeset | 63 export LANG="en_US.UTF-8" | 
| 461 | 64 export LC_CTYPE="en_US.UTF-8" | 
| 355 | 65 # The en_US.UTF-8 causes weird sorting. | 
| 66 # (not really, but I prefer C based sort.) | |
| 414 | 67 export LC_COLLATE=C | 
| 413 
fda660f86df3
Don't set lc_messages to utf-8. Just use plain C.
 Edho Arief <edho@myconan.net> parents: 
407diff
changeset | 68 export LC_MESSAGES=C | 
| 267 
e35a36bb832e
Always export LSCOLORS and CLICOLOR
 Edho Arief <edho@myconan.net> parents: 
266diff
changeset | 69 export CLICOLOR= | 
| 342 
4a37643931c4
[rc/bashrc] Better color for solarized and general (blue -> cyan).
 Edho Arief <edho@myconan.net> parents: 
335diff
changeset | 70 export LSCOLORS="gxfxcxdxbxegedabagacad" | 
| 307 | 71 export LS_COLORS= | 
| 309 
592605e4d3bb
Use SI whenever possible. Use 1KiB instead otherwise.
 Edho Arief <edho@myconan.net> parents: 
308diff
changeset | 72 export BLOCKSIZE=1K | 
| 
592605e4d3bb
Use SI whenever possible. Use 1KiB instead otherwise.
 Edho Arief <edho@myconan.net> parents: 
308diff
changeset | 73 export BLOCK_SIZE=si | 
| 49 
b924652e169d
[bash] Various tweaks: prompt, unset for check variables, etc
 Edho Prima Arief <me@myconan.net> parents: 
48diff
changeset | 74 | 
| 62 | 75 alias ls="ls -F" | 
| 288 | 76 alias rd="rdesktop -g 1280x600 -K -a 15 -x m -z -P -r sound:off -r clipboard:CLIPBOARD -5" | 
| 360 
59dc2f13e0ae
Set default locale for man(1) to C.
 Edho Arief <edho@myconan.net> parents: 
355diff
changeset | 77 alias man="LANG=C man" | 
| 477 | 78 alias be="bundle exec" | 
| 79 alias ll="ls -l" | |
| 80 alias la="ls -A" | |
| 53 
b9db5d89aae3
[bash] POSIX grep, GNU grep, standardized quote (" unless ' required).
 Edho Prima Arief <me@myconan.net> parents: 
52diff
changeset | 81 | 
| 43 | 82 _has_gnu_ls= | 
| 53 
b9db5d89aae3
[bash] POSIX grep, GNU grep, standardized quote (" unless ' required).
 Edho Prima Arief <me@myconan.net> parents: 
52diff
changeset | 83 _has_gnu_grep= | 
| 238 
5dcbf6ab0109
Prioritize gnuls over colorls on OpenBSD. Modified GNU ls alias to allow different executable name.
 Edho Arief <edho@myconan.net> parents: 
141diff
changeset | 84 _ls="ls" | 
| 270 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 85 _grep="grep" | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 86 _has_posix_grep=y | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 87 | 
| 43 | 88 case "$(uname -s)" in | 
| 89 Linux) | |
| 90 _has_gnu_ls=y | |
| 96 
26c9dc482051
Merge. Linux obviously has gnu grep.
 Edho Prima Arief <edho@myconan.net> parents: 
75diff
changeset | 91 _has_gnu_grep=y | 
| 43 | 92 ;; | 
| 93 SunOS) | |
| 270 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 94 _has_posix_grep=n | 
| 43 | 95 [ -x /usr/gnu/bin/ls ] && _has_gnu_ls=y | 
| 53 
b9db5d89aae3
[bash] POSIX grep, GNU grep, standardized quote (" unless ' required).
 Edho Prima Arief <me@myconan.net> parents: 
52diff
changeset | 96 [ -x /usr/gnu/bin/grep ] && _has_gnu_grep=y | 
| 253 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 97 # Higher priority directories | 
| 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 98 for i in {/opt/csw,/usr/gnu}/{,s}bin; do | 
| 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 99 [ -d "${i}" ] && PATH="${i}:${PATH}" | 
| 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 100 done | 
| 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 101 for i in /usr/{sfw,xpg4}/bin; do | 
| 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 102 [ -d "${i}" ] && PATH="${PATH}:${i}" | 
| 
e6de49d70fe7
(Not so) simplified solaris path add.
 Edho Arief <edho@myconan.net> parents: 
252diff
changeset | 103 done | 
| 333 
aeb51856e281
[rc/bash] Solaris: additional path, removed useless test.
 Edho Arief <edho@myconan.net> parents: 
326diff
changeset | 104 [ -d "/opt/csw/gnu" ] && PATH="/opt/csw/gnu:${PATH}" | 
| 422 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 105 # Working terminfo (as opposed to solaris' mostly-broken terminfo). | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 106 [ -d /opt/local/share/lib/terminfo ] && export TERMINFO=/opt/local/share/lib/terminfo | 
| 57 
ada5b9534765
[bash] Sanitize sunos ping.
 Edho Prima Arief <me@myconan.net> parents: 
56diff
changeset | 107 alias ping="ping -s" | 
| 
ada5b9534765
[bash] Sanitize sunos ping.
 Edho Prima Arief <me@myconan.net> parents: 
56diff
changeset | 108 alias ping6="ping -A inet6" | 
| 422 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 109 # Check if we have sane(?) terminfo, assume broken terminfo otherwise. | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 110 if [ -z "${TERMINFO}" ]; then | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 111 # Hello tmux. Perhaps one day we'll have title with dtterm. | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 112 # But for now we work this around by prepending tmux call with xterm-256color | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 113 # which hopefully exists. Otherwise we have to live with no title. | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 114 case "${TERM}" in | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 115 xterm*) | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 116 if [ -f "/usr/share/lib/terminfo/x/xterm-256color" ]; then | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 117 export TERM="xterm-256color" | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 118 else | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 119 echo "No xterm-256color terminal, using dtterm. Tmux title won't work." | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 120 export TERM="dtterm" | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 121 fi | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 122 ;; | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 123 screen) | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 124 [ -f "/usr/share/lib/terminfo/s/screen" ] || export TERM="dtterm" | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 125 ;; | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 126 esac | 
| 
9d016276d889
Added compatibility with joyent's smartos.
 Edho Arief <edho@myconan.net> parents: 
419diff
changeset | 127 fi | 
| 270 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 128 if command -v ggrep > /dev/null 2>&1; then | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 129 _has_gnu_grep=y | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 130 _grep="ggrep" | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 131 fi | 
| 272 | 132 if command -v gls > /dev/null 2>&1; then | 
| 133 _has_gnu_ls=y | |
| 134 _ls="gls" | |
| 135 fi | |
| 43 | 136 ;; | 
| 275 | 137 FreeBSD) | 
| 138 # Invalid characters when using en_US.UTF-8. | |
| 139 alias man="man -o" | |
| 278 | 140 # Multi CPU awesomeness. | 
| 141 alias top="top -P" | |
| 453 
c3bfb45757e9
FreeBSD grep is GNU grep. Well, up to 9.x.
 Edho Arief <edho@myconan.net> parents: 
440diff
changeset | 142 # FreeBSD grep is GNU grep | 
| 
c3bfb45757e9
FreeBSD grep is GNU grep. Well, up to 9.x.
 Edho Arief <edho@myconan.net> parents: 
440diff
changeset | 143 _has_gnu_grep=y | 
| 275 | 144 ;; | 
| 62 | 145 OpenBSD) | 
| 407 
e5739479dc53
Prioritize colorls in openbsd.
 Edho Arief <edho@myconan.net> parents: 
403diff
changeset | 146 # GNU ls is broken in 5.2. Prioritize colorls instead. | 
| 
e5739479dc53
Prioritize colorls in openbsd.
 Edho Arief <edho@myconan.net> parents: 
403diff
changeset | 147 if command -v colorls > /dev/null 2>&1; then | 
| 
e5739479dc53
Prioritize colorls in openbsd.
 Edho Arief <edho@myconan.net> parents: 
403diff
changeset | 148 alias ls="colorls -F" | 
| 
e5739479dc53
Prioritize colorls in openbsd.
 Edho Arief <edho@myconan.net> parents: 
403diff
changeset | 149 elif command -v gls > /dev/null 2>&1; then | 
| 238 
5dcbf6ab0109
Prioritize gnuls over colorls on OpenBSD. Modified GNU ls alias to allow different executable name.
 Edho Arief <edho@myconan.net> parents: 
141diff
changeset | 150 _has_gnu_ls=y | 
| 
5dcbf6ab0109
Prioritize gnuls over colorls on OpenBSD. Modified GNU ls alias to allow different executable name.
 Edho Arief <edho@myconan.net> parents: 
141diff
changeset | 151 _ls="gls" | 
| 62 | 152 fi | 
| 153 ;; | |
| 351 
001cdf389aaf
NetBSD and DFBSD use similar package directory structure (pkgsrc).
 Edho Arief <edho@myconan.net> parents: 
345diff
changeset | 154 NetBSD|DragonFly) | 
| 249 | 155 if command -v gls > /dev/null 2>&1; then | 
| 156 _has_gnu_ls=y | |
| 157 _ls="gls" | |
| 158 elif command -v colorls > /dev/null 2>&1; then | |
| 276 | 159 alias ls="colorls -F" | 
| 249 | 160 fi | 
| 367 
37e422bb903b
Grep in color for NetBSD/DragonFly.
 Edho Arief <edho@myconan.net> parents: 
366diff
changeset | 161 alias grep='grep --color=auto' | 
| 249 | 162 ;; | 
| 67 | 163 CYGWIN*) | 
| 164 export PATH="${PATH}:${_org_path}" | |
| 165 ;; | |
| 43 | 166 esac | 
| 167 | |
| 314 | 168 if [ "${_has_gnu_ls}" = y ]; then | 
| 169 alias ls="${_ls} -F --color=auto" | |
| 170 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:'; | |
| 171 export LS_COLORS | |
| 172 fi | |
| 270 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 173 if [ "${_has_gnu_grep}" = y ]; then | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 174 alias grep="${_grep} --color=auto" | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 175 _has_posix_grep=y | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 176 fi | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 177 if [ "${_has_posix_grep}" = y ]; then | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 178 alias fgrep="grep -F" | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 179 alias egrep="grep -E" | 
| 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 180 fi | 
| 53 
b9db5d89aae3
[bash] POSIX grep, GNU grep, standardized quote (" unless ' required).
 Edho Prima Arief <me@myconan.net> parents: 
52diff
changeset | 181 | 
| 49 
b924652e169d
[bash] Various tweaks: prompt, unset for check variables, etc
 Edho Prima Arief <me@myconan.net> parents: 
48diff
changeset | 182 unset _has_gnu_ls | 
| 58 | 183 unset _has_gnu_grep | 
| 270 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 184 unset _has_posix_grep | 
| 238 
5dcbf6ab0109
Prioritize gnuls over colorls on OpenBSD. Modified GNU ls alias to allow different executable name.
 Edho Arief <edho@myconan.net> parents: 
141diff
changeset | 185 unset _ls | 
| 270 
0e41725e7d38
Grep, GNU Grep, Solaris Grep, etc.
 Edho Arief <edho@myconan.net> parents: 
269diff
changeset | 186 unset _grep | 
| 49 
b924652e169d
[bash] Various tweaks: prompt, unset for check variables, etc
 Edho Prima Arief <me@myconan.net> parents: 
48diff
changeset | 187 | 
| 261 | 188 # Custom application I usually install and safe to prioritize | 
| 438 | 189 for i in {"${HOME}/app","/opt"{,"/${USER:-$LOGNAME}"}}/{tmux,ruby19,python26,node,tarsnap,symon,nginx,p7zip}/{bin,sbin}; do | 
| 261 | 190 [ -d "${i}" ] && PATH="${i}:${PATH}" | 
| 191 done | |
| 304 | 192 # New(?) rubygems bin PATH | 
| 344 | 193 for i in {"${HOME}/app","/opt"{,"/${USER:-$LOGNAME}"}}/ruby19/lib/ruby/gems/1.9.1/bin; do | 
| 304 | 194 [ -d "${i}" ] && PATH="${i}:${PATH}" | 
| 195 done | |
| 261 | 196 | 
| 264 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 197 # MySQL in common locations highest priority since new = better. Also no compatibility problem. | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 198 # Cluster is superset of Enterprise/GPL so it gets highest priority. | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 199 # And use only one. | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 200 for mydir in {"${HOME}",/app{,s},/opt}/mysql/{{cluster,enterprise}/mysql/,}bin; do | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 201 if [ -d "${mydir}" ]; then | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 202 PATH="${mydir}:${PATH}" | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 203 break | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 204 fi | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 205 done | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 206 | 
| 261 | 207 # Mercurial is optional since it will be inconsistent with ssh ... hg if this one gets priority. | 
| 264 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 208 # And use only one. | 
| 281 
87ce8cfdb8d4
Alias for newer hg. Also more search path.
 Edho Arief <edho@myconan.net> parents: 
279diff
changeset | 209 for hgdir in {"${HOME}/app","/opt"}/mercurial{,/bin}; do | 
| 
87ce8cfdb8d4
Alias for newer hg. Also more search path.
 Edho Arief <edho@myconan.net> parents: 
279diff
changeset | 210 hgbin="${hgdir}/hg" | 
| 
87ce8cfdb8d4
Alias for newer hg. Also more search path.
 Edho Arief <edho@myconan.net> parents: 
279diff
changeset | 211 if [ -x "${hgbin}" ]; then | 
| 264 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 212 PATH="${PATH}:${hgdir}" | 
| 281 
87ce8cfdb8d4
Alias for newer hg. Also more search path.
 Edho Arief <edho@myconan.net> parents: 
279diff
changeset | 213 alias nhg="${hgbin}" | 
| 264 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 214 break | 
| 
c6c322c57e0e
Paths for MySQL, instabreak for mercurial.
 Edho Arief <edho@myconan.net> parents: 
262diff
changeset | 215 fi | 
| 261 | 216 done | 
| 56 
9343fa4dfd91
[bash] we have vim. Probably.
 Edho Prima Arief <me@myconan.net> parents: 
55diff
changeset | 217 | 
| 273 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 218 for supbindir in {"${HOME}/app","/opt"}/supervisor{,d}/bin; do | 
| 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 219 if [ -d "${supbindir}" ]; then | 
| 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 220 PATH="${PATH}:${supbindir}" | 
| 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 221 break | 
| 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 222 fi | 
| 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 223 done | 
| 
cf23a637f3a5
Supervisor support. Added on last since I usually install it in virtualenv
 Edho Arief <edho@myconan.net> parents: 
271diff
changeset | 224 | 
| 436 
d6ac822569c4
Updated the uncolored prompt style.
 Edho Arief <edho@myconan.net> parents: 
435diff
changeset | 225 PS1='\u@\h:\w\$ ' | 
| 59 | 226 case "${TERM}" in | 
| 254 
dde04581a2bf
Combined PS1 and PROMPT_COMMAND conditional.
 Edho Arief <edho@myconan.net> parents: 
253diff
changeset | 227 xterm*|screen*|dtterm*) | 
| 271 
003b0c8870b3
As it turns out who am i doesn't respect current actual user. Replaced with ancient but better version. Either LOGNAME or USER. Whichever has value.
 Edho Arief <edho@myconan.net> parents: 
270diff
changeset | 228 PROMPT_COMMAND='echo -ne "\033]0;'"${USER:-$LOGNAME}@$(uname -n)"': ${PWD}\007";'"${PROMPT_COMMAND}" | 
| 352 
038c28c748d0
The color prompt is broken-ish in DFBSD.
 Edho Arief <edho@myconan.net> parents: 
351diff
changeset | 229 # DragonFly's Bash is a bit buggy. | 
| 
038c28c748d0
The color prompt is broken-ish in DFBSD.
 Edho Arief <edho@myconan.net> parents: 
351diff
changeset | 230 if [ "$(uname)" != "DragonFly" ]; then | 
| 435 
4a71d0b1a4c6
Different, more compact style of prompt.
 Edho Arief <edho@myconan.net> parents: 
434diff
changeset | 231 PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;36m\]\w\[\e[0m\]\$ ' | 
| 352 
038c28c748d0
The color prompt is broken-ish in DFBSD.
 Edho Arief <edho@myconan.net> parents: 
351diff
changeset | 232 fi | 
| 59 | 233 ;; | 
| 234 esac | |
| 235 | |
| 63 
b7814634220a
[bash] branch merge, added EDITOR change to vim when detected.
 Edho Prima Arief <me@myconan.net> parents: 
62diff
changeset | 236 if command -v vim > /dev/null 2>&1; then | 
| 
b7814634220a
[bash] branch merge, added EDITOR change to vim when detected.
 Edho Prima Arief <me@myconan.net> parents: 
62diff
changeset | 237 alias vi=vim | 
| 
b7814634220a
[bash] branch merge, added EDITOR change to vim when detected.
 Edho Prima Arief <me@myconan.net> parents: 
62diff
changeset | 238 export EDITOR=vim | 
| 
b7814634220a
[bash] branch merge, added EDITOR change to vim when detected.
 Edho Prima Arief <me@myconan.net> parents: 
62diff
changeset | 239 fi | 
| 266 | 240 | 
| 296 | 241 if command -v less > /dev/null 2>&1; then | 
| 395 
c01d272af466
Moved less configuration declaration to environment variable.
 Edho Arief <edho@myconan.net> parents: 
360diff
changeset | 242 export PAGER=less | 
| 488 
e3648f0482e5
Automatically exit less when the file is less than one screenful.
 edogawaconan <me@myconan.net> parents: 
477diff
changeset | 243 export LESS=-FMRXginsz-2 | 
| 296 | 244 fi | 
| 245 | |
| 365 | 246 # Test if we have GNU rm prefixed by g (esp if on non-GNU system). | 
| 247 # Usually on old Solaris and {Net,Open,DragonFly}BSD. | |
| 248 if command -v grm > /dev/null 2>&1; then | |
| 249 _rm="grm" | |
| 250 else | |
| 251 _rm="rm" | |
| 252 fi | |
| 253 # Test if the specified rm has "-I" parameter since it's much better. | |
| 254 if "${_rm}" -If "/tmp/.nonexistent.$(date '+%Y%m%d%H%M%S')" 2> /dev/null; then | |
| 255 alias rm="${_rm} -I" | |
| 256 else | |
| 257 alias rm="${_rm} -i" | |
| 258 fi | |
| 366 | 259 unset _rm | 
| 266 | 260 | 
| 402 
a23b0f6ee8a2
Add alias for zeropaste posting.
 Edho Arief <edho@myconan.net> parents: 
400diff
changeset | 261 if command -v curl > /dev/null 2>&1; then | 
| 465 | 262 alias 0p="gzip | curl 'http://0paste.com/pastes.txt' -F 'paste[paste_gzip]=<-'" | 
| 466 | 263 alias 0pp="gzip | curl 'http://0paste.com/pastes.txt' -F 'paste[is_private]=1' -F 'paste[paste_gzip]=<-'" | 
| 402 
a23b0f6ee8a2
Add alias for zeropaste posting.
 Edho Arief <edho@myconan.net> parents: 
400diff
changeset | 264 fi | 
| 
a23b0f6ee8a2
Add alias for zeropaste posting.
 Edho Arief <edho@myconan.net> parents: 
400diff
changeset | 265 | 
| 464 | 266 # Priority PATHs. Always enable. | 
| 267 PATH="${HOME}/bin:${HOME}/.ecos_bin:/opt/local/bin:/opt/local/sbin:${PATH}" | |
| 268 | |
| 71 | 269 [ -f "${HOME}/.ecos_bash.after" ] && . "${HOME}/.ecos_bash.after" | 
