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=always} "$@" | mdw-pager
127 alias grep="greplike grep"
128 alias egrep="greplike egrep"
129 alias fgrep="greplike fgrep"
130 alias zgrep="greplike zgrep"
132 # --- Set up some simple aliases ---
135 alias which="command -v"
136 alias ssync="rsync -e ssh"
137 alias rootly=$__MDW_ROOTLY
139 alias re="rootly $EDITOR"
140 alias pstree="pstree -hl"
141 alias cdtmp='cd ${TMPDIR-/tmp}'
142 alias pushtmp='pushd ${TMPDIR-/tmp}'
144 alias svn="svnwrap svn"
147 [ -r /etc/bash_completion ] && . /etc/bash_completion
148 [ -r $HOME/.bash_completion ] && . $HOME/.bash_completion
150 # --- Make `xt' start an xterm, maybe logging into a remote host ---
155 local remote=${1#@} title
157 if [ $# -gt 0 ]; then
158 title="xterm [$remote] $1"
160 title="xterm [$remote]"
162 (xterm -title "$title" -e ssh $remote "$@" &)
170 # --- Turning on and off core dumps ---
175 ulimit -Sc `ulimit -Hc`
183 0) echo "Core dumps disabled" ;;
184 unlimited) echo "Core dumps enabled" ;;
185 *) echo "Core dump limit is $l blocks" ;;
189 echo >&2 "usage: core [yn]"
195 # --- Turning on and off path hacks ---
198 local pathvar export dir val
200 1) pathvar=PATH dir=$1 export="export PATH";;
201 2) pathvar=$1 dir=$2 export=:;;
202 *) echo >&2 "Usage: $0 [VAR] DIR";;
204 eval "val=\$$pathvar"
209 eval "$pathvar=\$val"
214 local pathvar export dir val
216 1) pathvar=PATH dir=$1 export="export PATH";;
217 2) pathvar=$1 dir=$2 export=:;;
218 *) echo >&2 "Usage: $0 [VAR] DIR";;
220 eval "val=\$$pathvar"
223 :"$dir":*) val=${val#$dir:} ;;
224 *:"$dir":) val=${val%:$dir} ;;
225 *:"$dir":*) val=${val/:$dir:/:} ;;
227 eval "$pathvar=\$val"
232 if [ $# -eq 0 ]; then
237 echo ${e#$HOME/bin/hacks/}
245 while [ $# -gt 0 ]; do
264 dir=$HOME/bin/hacks/$hack
266 echo "$0: path hack $hack not found"
269 case "$arg,$force,:$PATH:" in
271 path-remove path "$dir"
274 path-remove path "$dir"
285 if [ $# -eq 0 ]; then
293 # --- Switching security worlds ---
296 local nfast=${NFAST_HOME-/opt/nfast}
300 echo "${NFAST_KMDATA#$nfast/kmdata-}"
305 elif [ -d "$nfast/kmdata-$1" ]; then
306 kmdata=$nfast/kmdata-$1
308 echo >&2 "world: can't find world $1"
313 0) export NFAST_KMDATA=$kmdata ;;
320 # --- Fix `man' under Slowaris ---
330 case "$arg" in [0-9]*) man[i+=1]="-s" ;; esac
333 command man "${man[@]}"
338 # --- For `root' use -- some simple molly-guards ---
340 if (( UID == 0 )); then
341 alias rm='rm -i' cp='cp -i' mv='mv -i'
345 [ -f "$HOME/.bashrc-local" ] && . "$HOME/.bashrc-local"