1 # -*- mode: sh; coding: utf-8 -*-
6 if [ -z "$__mdw_bashrc" ]; then
10 [ -z "$__mdw_profile" -a -r $HOME/.bash_profile ] && . $HOME/.bash_profile
11 [ -r /etc/bashrc ] && . /etc/bashrc
13 # --- First of all, set up the prompt string ---
18 linux*|screen*|xterm*|vt100*|eterm*)
19 bold="\[$(tput bold)\]" unbold="\[$(tput sgr0)\]" nl="\[
\r\]" ;;
21 bold='' unbold='' nl='' ;;
24 if (( EUID == 0 )); then
25 left=`echo « | iconv -f utf8 -t //translit`
26 right=`echo » | iconv -f utf8 -t //translit`
30 u="" left="[" right="]"
33 u="\\u@" left="{" right="}"
36 if [ "$__mdw_tty" = "`tty`" ]; then
39 export __mdw_tty="`tty`"
43 if [ -z "$SSH_CLIENT" ] &&
44 [ "$__mdw_sechost" != "`hostname`" ]
49 PS1="$nl$bold$left$sec_l$u\\h$sec_r \\w$right$unbold"
50 PS2="$PS1 $bold>$unbold "
54 # --- Pagers are less useful within Emacs ---
56 case "$INSIDE_EMACS" in
57 22.*,comint) export PAGER=cat ;;
60 # --- Little preferences ---
70 shopt -s expand_aliases
77 shopt -s interactive_comments
83 shopt -u shift_verbose
86 # --- Set the CDPATH ---
88 # CDPATH=~/src:/usr/src:/usr/lib:/usr/share
91 # while (( i > 0 )); do
92 # CDPATH=$CDPATH:$dots
98 # --- Some colour `ls' support ---
100 [ "${TMPDIR+yes}" ] || eval `tmpdir -b`
101 if [ -x /usr/bin/dircolors -o -x /usr/local/bin/dircolors ]; then
102 eval `dircolors -b ~/.dircolors`
109 command ls $LS_OPTIONS ${LS_COLORS+--color=auto} "$@"
115 # --- Some colour `grep' support ---
117 export GREP_COLORS="mt=01;31:ms=01;31:mc=031;31:fn=36:ln=36:bn=36:se=34"
120 declare grep=$1; shift
122 command $grep ${GREP_COLORS+--color=auto} "$@"
127 alias grep="greplike grep"
128 alias egrep="greplike egrep"
129 alias fgrep="greplike fgrep"
131 # --- Set up some simple aliases ---
134 alias which="command -v"
135 alias ssync="rsync -e ssh"
136 alias rootly=$__MDW_ROOTLY
138 alias re="rootly $EDITOR"
139 alias pstree="pstree -hl"
140 alias cdtmp='cd ${TMPDIR-/tmp}'
141 alias pushtmp='pushd ${TMPDIR-/tmp}'
143 alias svn="svnwrap svn"
146 [ -r /etc/bash_completion ] && . /etc/bash_completion
147 [ -r $HOME/.bash_completion ] && . $HOME/.bash_completion
149 # --- Make `xt' start an xterm, maybe logging into a remote host ---
154 local remote=${1#@} title
156 if [ $# -gt 0 ]; then
157 title="xterm [$remote] $1"
159 title="xterm [$remote]"
161 (xterm -title "$title" -e ssh $remote "$@" &)
169 # --- Turning on and off core dumps ---
174 ulimit -Sc `ulimit -Hc`
182 0) echo "Core dumps disabled" ;;
183 unlimited) echo "Core dumps enabled" ;;
184 *) echo "Core dump limit is $l blocks" ;;
188 echo >&2 "usage: core [yn]"
194 # --- Turning on and off path hacks ---
197 local pathvar export dir val
199 1) pathvar=PATH dir=$1 export="export PATH";;
200 2) pathvar=$1 dir=$2 export=:;;
201 *) echo >&2 "Usage: $0 [VAR] DIR";;
203 eval "val=\$$pathvar"
208 eval "$pathvar=\$val"
213 local pathvar export dir val
215 1) pathvar=PATH dir=$1 export="export PATH";;
216 2) pathvar=$1 dir=$2 export=:;;
217 *) echo >&2 "Usage: $0 [VAR] DIR";;
219 eval "val=\$$pathvar"
222 :"$dir":*) val=${val#$dir:} ;;
223 *:"$dir":) val=${val%:$dir} ;;
224 *:"$dir":*) val=${val/:$dir:/:} ;;
226 eval "$pathvar=\$val"
231 if [ $# -eq 0 ]; then
236 echo ${e#$HOME/bin/hacks/}
244 while [ $# -gt 0 ]; do
263 dir=$HOME/bin/hacks/$hack
265 echo "$0: path hack $hack not found"
268 case "$arg,$force,:$PATH:" in
270 path-remove path "$dir"
273 path-remove path "$dir"
284 if [ $# -eq 0 ]; then
292 # --- Switching security worlds ---
295 local nfast=${NFAST_HOME-/opt/nfast}
299 echo "${NFAST_KMDATA#$nfast/kmdata-}"
304 elif [ -d "$nfast/kmdata-$1" ]; then
305 kmdata=$nfast/kmdata-$1
307 echo >&2 "world: can't find world $1"
312 0) export NFAST_KMDATA=$kmdata ;;
319 # --- Fix `man' under Slowaris ---
329 case "$arg" in [0-9]*) man[i+=1]="-s" ;; esac
332 command man "${man[@]}"
337 # --- For `root' use -- some simple molly-guards ---
339 if (( UID == 0 )); then
340 alias rm='rm -i' cp='cp -i' mv='mv -i'
344 [ -f "$HOME/.bashrc-local" ] && . "$HOME/.bashrc-local"