Mercurial > ec-dotfiles
view bash @ 55:c6d78ab9af22
[bash] turns out one of those that requires '.
author | Edho Prima Arief <me@myconan.net> |
---|---|
date | Thu, 28 Apr 2011 14:35:32 +0700 |
parents | fd518e13cf4d |
children | 9343fa4dfd91 |
line wrap: on
line source
#!/usr/bin/env bash [ -f .ecos_bash.before ] && . .ecos_bash.before PATH="${HOME}/.ecos_bin:${HOME}/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" PS1='[\u@\h \W]\$ ' export PAGER="less -Rins" export EDITOR=vi alias less="less -Rins" #assuming POSIX grep alias fgrep="grep -F" alias egrep="grep -E" _has_rm_I= _has_gnu_ls= _has_gnu_grep= _has_bsd_ls= case "$(uname -s)" in Linux) _has_rm_I=y _has_gnu_ls=y ;; SunOS) [ -x /usr/gnu/bin/rm ] && _has_rm_I=y [ -x /usr/gnu/bin/ls ] && _has_gnu_ls=y [ -x /usr/gnu/bin/grep ] && _has_gnu_grep=y [ -d /usr/xpg4/bin ] && PATH="/usr/xpg4/bin:${PATH}" [ -d /opt/csw/bin ] && PATH="/opt/csw/bin:${PATH}" [ -d /opt/csw/sbin ] && PATH="/opt/csw/sbin:${PATH}" [ -d /usr/gnu/bin ] && PATH="/usr/gnu/bin:${PATH}" ;; FreeBSD) _has_rm_I=y CLICOLOR= ;; esac if [ "${_has_rm_I}" = y ]; then alias rm="rm -I" else alias rm="rm -i" fi if [ "${_has_gnu_ls}" = y ]; then alias ls="ls -F --color=auto" else alias ls="ls -F" fi if [ "${_has_gnu_grep}" = y ]; then alias grep="grep --color=auto" fi unset _has_rm_I unset _has_gnu_ls unset _has_bsd_ls export PATH [ -f .ecos_bash.after ] && . .ecos_bash.after