Mercurial > ec-dotfiles
comparison rc/bash @ 276:8096bb665d4a
' -> "
author | Edho Arief <edho@myconan.net> |
---|---|
date | Thu, 08 Dec 2011 15:21:45 +0700 |
parents | a2f0f4106c00 |
children | 8e451b27baa5 |
comparison
equal
deleted
inserted
replaced
275:a2f0f4106c00 | 276:8096bb665d4a |
---|---|
15 | 15 |
16 _org_path="${PATH}" | 16 _org_path="${PATH}" |
17 export PATH="${HOME}/.ecos_bin:${HOME}/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" | 17 export PATH="${HOME}/.ecos_bin:${HOME}/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" |
18 | 18 |
19 shopt -s histappend | 19 shopt -s histappend |
20 PROMPT_COMMAND='history -a' | 20 PROMPT_COMMAND="history -a" |
21 export HISTFILESIZE=10000 | 21 export HISTFILESIZE=10000 |
22 export HISTCONTROL=ignoredups | 22 export HISTCONTROL=ignoredups |
23 | 23 |
24 export PAGER="less -Rins" | 24 export PAGER="less -Rins" |
25 export EDITOR=vi | 25 export EDITOR=vi |
78 PATH="${PATH}:/usr/X11R6/bin" | 78 PATH="${PATH}:/usr/X11R6/bin" |
79 if command -v gls > /dev/null 2>&1; then | 79 if command -v gls > /dev/null 2>&1; then |
80 _has_gnu_ls=y | 80 _has_gnu_ls=y |
81 _ls="gls" | 81 _ls="gls" |
82 elif command -v colorls > /dev/null 2>&1; then | 82 elif command -v colorls > /dev/null 2>&1; then |
83 alias ls='colorls -F' | 83 alias ls="colorls -F" |
84 fi | 84 fi |
85 ;; | 85 ;; |
86 NetBSD) | 86 NetBSD) |
87 PATH="${PATH}:/usr/pkg/bin:/usr/pkg/sbin" | 87 PATH="${PATH}:/usr/pkg/bin:/usr/pkg/sbin" |
88 if command -v gls > /dev/null 2>&1; then | 88 if command -v gls > /dev/null 2>&1; then |
89 _has_gnu_ls=y | 89 _has_gnu_ls=y |
90 _ls="gls" | 90 _ls="gls" |
91 elif command -v colorls > /dev/null 2>&1; then | 91 elif command -v colorls > /dev/null 2>&1; then |
92 alias ls='colorls -F' | 92 alias ls="colorls -F" |
93 fi | 93 fi |
94 ;; | 94 ;; |
95 CYGWIN*) | 95 CYGWIN*) |
96 export PATH="${PATH}:${_org_path}" | 96 export PATH="${PATH}:${_org_path}" |
97 ;; | 97 ;; |