Mercurial > ec-dotfiles
view bash @ 62:996aa2f81721
[bash] various fixes:
- export the path first thing - also add export on sunos case.
- alias early
- unused _has_bsd_ls
- added openbsd, check for colorls which is an awesome command
author | Edho Prima Arief <me@myconan.net> |
---|---|
date | Fri, 06 May 2011 03:15:24 +0700 |
parents | be4d0b045487 |
children | b7814634220a |
line wrap: on
line source
#!/usr/bin/env bash [ -f .ecos_bash.before ] && . .ecos_bash.before export 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" alias ls="ls -F" alias rm="rm -i" _has_rm_I= _has_gnu_ls= _has_gnu_grep= 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}" export PATH alias ping="ping -s" alias ping6="ping -A inet6" ;; FreeBSD) _has_rm_I=y CLICOLOR= ;; OpenBSD) if command -v colorls > /dev/null 2>&1; then export CLICOLOR= alias ls='colorls -F' fi ;; esac [ "${_has_rm_I}" = y ] && alias rm="rm -I" [ "${_has_gnu_ls}" = y ] && alias ls="ls -F --color=auto" [ "${_has_gnu_grep}" = y ] && alias grep="grep --color=auto" unset _has_rm_I unset _has_gnu_ls unset _has_gnu_grep case "${TERM}" in xterm*|screen*|dtterm) PROMPT_COMMAND='echo -ne "\033]0;${LOGNAME}@${HOSTNAME}: ${PWD}\007"' ;; esac command -v vim > /dev/null 2>&1 && alias vi=vim [ -f .ecos_bash.after ] && . .ecos_bash.after