]> git.phdru.name Git - dotfiles.git/blob - .shellrc
.shellrc: move some functions to the end (alphabetically)
[dotfiles.git] / .shellrc
1 #
2 # $HOME/.shellrc
3 #
4
5 # ~/.bashrc: executed by bash(1) for non-login shells.
6 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
7 # for examples
8
9 # If not running interactively, don't do anything
10 case $- in
11     *i*) ;;
12       *) return;;
13 esac
14
15 # Stop if non-interactive shell
16 # [ -z "$PS1" ] && return
17
18 # append to the history file, don't overwrite it
19 shopt -s histappend
20
21 # check the window size after each command and, if necessary,
22 # update the values of LINES and COLUMNS.
23 shopt -s checkwinsize
24
25 # If set, the pattern "**" used in a pathname expansion context will
26 # match all files and zero or more directories and subdirectories.
27 #shopt -s globstar
28
29
30 #if [ -x /usr/bin/dircolors ]; then
31    # I don't like these aliases - they work only in command line
32    # but not in scripts I run from command line.
33    # Color parameters must be passed via environment.
34    #alias ls='ls --color=auto'
35    #alias dir='dir --color=auto'
36    #alias vdir='vdir --color=auto'
37
38    #alias grep='grep --color=auto'
39    #alias fgrep='fgrep --color=auto'
40    #alias egrep='egrep --color=auto'
41 #fi
42
43
44 case "$HOME" in
45    /home/*)
46       if [ -L /home ]; then
47          START_DIR="`pwd`" &&
48          cd "$HOME" &&
49          HOME="`pwd`" &&
50          cd "$START_DIR"
51       fi
52    ;;
53 esac
54
55
56 OPS1="$OPS1\\$"
57 PS1="$OPS1 "
58
59
60 case "$SHELL" in
61 */bash)
62    [ "`type -t ls`" = alias ] && unalias ls
63    [ "`type -t ll`" = alias ] && unalias ll
64    [ "`type -t mc`" = alias ] && unalias mc
65
66    back() { cd - ${1:+"$@"}; }
67    clo() { clear; logout; }
68    eval 'functions() { typeset -f ${1:+"$@"}; }'
69    j() { jobs; }
70
71    if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
72       if [ "$SHELL" = /bin/bash ]; then
73          if [ -f /etc/bash_completion ]; then
74             . /etc/bash_completion
75          elif [ -d /etc/bash_completion.d ]; then
76             . /etc/bash_completion.d/*
77          fi
78       elif [ "$SHELL" = /usr/local/bin/bash ]; then
79          if [ -d /usr/local/etc/bash_completion.d ]; then
80             . /usr/local/etc/bash_completion.d/*
81          fi
82       else
83          echo "Unknown OS type, canot source bash_completion" >&2
84       fi
85    fi
86
87    has_completion() { return 0; }
88    if [ "$SHELL" = /bin/bash ]; then
89       if [ -d /etc/bash_completion.d -o -d /usr/share/bash-completion/completions ]; then
90          has_completion() { [ -r /etc/bash_completion.d/$1 -o -r /usr/share/bash-completion/completions/$1 ]; }
91       fi
92    elif [ "$SHELL" = /usr/local/bin/bash ]; then
93       if [ -d /usr/local/etc/bash_completion.d ]; then
94          has_completion() { [ -r /usr/local/etc/bash_completion.d/$1 ]; }
95       fi
96    fi
97
98    for cmd in builtin cgmem_nice command dbus-launch exec \
99       killall man nice nohup pidof pidOf KillAll pgrep pkill psg pswg su sudo \
100       time whence whereis which xargs; do
101          ! has_completion $cmd && complete -o default -A command $cmd
102    done
103
104    for cmd in dig host nslookup nc netcat nmap p ping ping6 socat \
105       telnet t tt \
106       tcptraceroute tcptraceroute6 tracert tracert6 traceroute traceroute6 \
107       whois wget wget-m wget-wrapper ww; do
108          ! has_completion $cmd && complete -A hostname $cmd
109    done
110
111    for cmd in distribute ftp lftp r rsync \
112       s scp ssh smbclient tcpdump tshark wireshark; do
113          ! has_completion $cmd && complete -o default -A hostname $cmd;
114    done
115    unset has_completion
116
117    complete -A job bg fg j jobs wait
118    complete -A variable unset
119
120    if [ -d "$HOME/lib/config" ]; then
121       complete -W "`cd \"$HOME/lib/config\" && echo *`" include
122    fi
123    complete -W "`echo $BROWSER | sed 's/:/ /g'`" start-browser
124
125    if which pip >/dev/null 2>&1; then
126       eval "`pip completion --bash`"
127       rm -rf /tmp/pip_build_"$USER"
128    fi
129    ;;
130
131 */ksh)
132    back() { cd - ${1:+"$@"}; }
133    clo() { clear; exit; }
134    j() { jobs; }
135    ;;
136
137 */sh)
138    clo() { clear; exit; }
139    ;;
140 esac
141
142
143 # clear history, clear screen and logout
144 #chlo() { cd; unset HISTFILE; rm -f .sh_history; history -c; clo; }
145
146
147 #Pwd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)\/\(.*\)\/\(.*\)/...\/\2\/\3\/\4/"; }
148 #PWd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)/...\/\2/"; }
149
150
151 psg()   { ps auxw   | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\)'; }
152 pswg()  { ps auxwww | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\)'; }
153
154 # Like pgrep -f
155 pidOf() { ps auxwww | grep -i ${1:+"$@"} | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }
156
157 # A kind of pkill/killall
158 KillAll() {
159    if [ -z "$2" ]; then
160       kill `pidOf "$1"`
161    else
162       kill "$1" `pidOf "$2"`
163    fi
164 }
165
166
167 include()
168 {
169    cfg="$1"
170    if [ -f "./$cfg" -a -r "./$cfg" ]; then
171       echo "Reading config file \`$cfg'" 1>&2
172       . "./$cfg"
173    elif [ -f "$HOME/lib/config/$cfg" -a -r "$HOME/lib/config/$cfg" ]; then
174       echo "Reading config file \`$HOME/lib/config/$cfg'" 1>&2
175       . "$HOME/lib/config/$cfg"
176    else
177       echo "Cannot find config file \`$cfg'" 1>&2
178    fi
179 }
180
181
182 mc() {
183    case "$SHELL" in
184       */bash)
185          MC_SAVE_OPS1="$OPS1"
186          OPS1="\u@\h "
187       ;;
188    esac
189
190    if [ -n "$SLOWTERM" ]; then
191       MC_SLOW="--slow"
192    fi
193
194    case "$TERM" in
195       screen*) # screen, screen.rxvt
196          if [ "$TERM" = screen.rxvt ]; then
197             MC_SAVE_TERM="$TERM"
198             TERM=rxvt
199          fi
200          MC_XTERM="-x"
201       ;;
202    esac
203
204    #TMPDIR="$HOME"/tmp
205    #export TMPDIR
206
207    MC_FOUND=NO
208
209    for wrapper in \
210          /usr/local/share/mc/bin/mc-wrapper.sh \
211          /usr/local/libexec/mc/mc-wrapper.sh \
212          /usr/share/mc/bin/mc-wrapper.sh; do
213       if [ -r $wrapper ]; then
214          . $wrapper $MC_SLOW $MC_XTERM "$@"
215          rc=$?
216          MC_FOUND=YES
217          break
218       fi
219    done
220
221    if [ $MC_FOUND = NO ]; then
222       for mc in /usr/local/bin/mc /usr/bin/mc; do
223          if [ -x $mc ]; then
224             MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER"
225             if [ ! -d MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER" ]; then
226                MC_TMP_DIR="${TMPDIR-/tmp}"
227             fi
228             MC_PWD_FILE="$MC_TMP_DIR/mc.pwd.$$"
229             mc_type="`mc_type.py $mc`"
230             if [ "$mc_type" = old ]; then
231                $mc -P $MC_SLOW $MC_XTERM "$@" > "$MC_PWD_FILE"
232             elif [ "$mc_type" = new ]; then
233                $mc -P "$MC_PWD_FILE" $MC_SLOW $MC_XTERM "$@"
234             else
235                continue
236             fi
237             rc=$?
238             MC_FOUND=YES
239             cd "`cat \"$MC_PWD_FILE\"`" && /bin/rm "$MC_PWD_FILE"
240             break
241          fi
242       done
243    fi
244
245    if [ $MC_FOUND = NO ]; then
246       echo "Cannot find mc-wrapper.sh or mc" >&2
247       rc=1
248    fi
249
250    [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
251    [ -n "$MC_SAVE_TERM" ] && TERM="$MC_SAVE_TERM"
252    unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SAVE_TERM \
253          MC_SLOW MC_TMP_DIR MC_XTERM
254
255    return $rc
256 }
257
258
259 mkcd() {
260    if [ $# -ne 1 ]; then
261       echo "Usage: mkcd directory_name" >&2
262    elif [ -d "$1" ]; then
263       cd "$1"
264    elif [ -e "$1" ]; then
265       echo "Error: $1 is a file" >&2
266    else
267       mkdir -p "$1" && cd "$1"
268    fi
269 }
270
271
272 tmux() {
273    case "$TERM" in
274       rxvt)
275          TERM=rxvt-unicode command tmux "$@"
276       ;;
277
278       *)
279          command tmux "$@"
280       ;;
281    esac
282 }
283
284
285 if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then
286    source /usr/local/bin/virtualenvwrapper_lazy.sh
287 fi
288
289 #if which pyenv >/dev/null 2>&1; then
290 #   eval "`pyenv init -`"
291 #   eval "`pyenv virtualenv-init -`"
292 #fi
293
294
295 X() { startx >> .Xserver.log 2>&1; cyr; }
296 x() { exit; }