]> git.phdru.name Git - dotfiles.git/blob - .shellrc
.shellrc: check parameters and report usage errors
[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 if test -n "$BASH_VERSION"; then
19    # append to the history file, don't overwrite it
20    shopt -s histappend
21
22    # check the window size after each command and, if necessary,
23    # update the values of LINES and COLUMNS.
24    shopt -s checkwinsize
25
26    # If set, the pattern "**" used in a pathname expansion context will
27    # match all files and zero or more directories and subdirectories.
28    #shopt -s globstar
29 fi
30
31
32 #if [ -x /usr/bin/dircolors ]; then
33 #   # I don't like these aliases - they work only in command line
34 #   # but not in scripts I run from command line.
35 #   # Color parameters must be passed via environment.
36 #   # So instead I put them in shell scripts in ~/bin.
37 #   alias ls='ls --color=auto'
38 #   alias dir='dir --color=auto'
39 #   alias vdir='vdir --color=auto'
40 #
41 #   alias grep='grep --color=auto'
42 #   alias fgrep='fgrep --color=auto'
43 #   alias egrep='egrep --color=auto'
44 #
45 #   alias dmesg='dmesg --human'
46 #fi
47
48
49 case "$HOME" in
50    /home/*)
51       if [ -L /home ]; then
52          START_DIR="`pwd`" &&
53          cd "$HOME" &&
54          HOME="`pwd`" &&
55          cd "$START_DIR"
56       fi
57    ;;
58 esac
59
60
61 OPS1="$OPS1\\$"
62 PS1="$OPS1 "
63
64
65 if test -n "$BASH_VERSION"; then
66    [ "`type -t ls`" = alias ] && unalias ls
67    [ "`type -t ll`" = alias ] && unalias ll
68    [ "`type -t mc`" = alias ] && unalias mc
69
70    back() { cd - "$@"; }
71    clo() { clear; logout; }
72    functions() { typeset -f "$@"; }
73    j() { jobs; }
74
75    if [ -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
76       if [ "$SHELL" = /bin/bash ]; then
77          if [ -f /etc/bash_completion ]; then
78             . /etc/bash_completion
79          elif [ -d /etc/bash_completion.d ]; then
80             . /etc/bash_completion.d/*
81          fi
82       elif [ "$SHELL" = /usr/local/bin/bash ]; then
83          if [ -d /usr/local/etc/bash_completion.d ]; then
84             . /usr/local/etc/bash_completion.d/*
85          fi
86       else
87          echo "Unknown OS type, canot source bash_completion" >&2
88       fi
89    fi
90
91    has_completion() { return 0; }
92    if [ "$SHELL" = /bin/bash ]; then
93       if [ -d /etc/bash_completion.d -o -d /usr/share/bash-completion/completions ]; then
94          has_completion() { [ -r /etc/bash_completion.d/$1 -o -r /usr/share/bash-completion/completions/$1 ]; }
95       fi
96    elif [ "$SHELL" = /usr/local/bin/bash ]; then
97       if [ -d /usr/local/etc/bash_completion.d ]; then
98          has_completion() { [ -r /usr/local/etc/bash_completion.d/$1 ]; }
99       fi
100    fi
101
102    for cmd in builtin cgmem_nice command dbus-launch exec \
103       killall man nice nohup pidof pidOf KillAll pgrep pkill psg pswg su sudo \
104       time whence whereis which xargs; do
105          ! has_completion $cmd && complete -o default -A command $cmd
106    done
107
108    for cmd in dig host mtr nslookup nc netcat nmap p ping ping6 socat \
109       telnet t tt \
110       tcptraceroute tcptraceroute6 tracert tracert6 traceroute traceroute6 \
111       whois wget wget-m wget-wrapper ww; do
112          ! has_completion $cmd && complete -A hostname $cmd
113    done
114
115    if has_completion wget; then
116       _wget_completion_loader() {
117          _completion_loader wget
118          complete -F _wget wget-m wget-wrapper ww
119          unset _wget_completion_loader
120          return 124
121       }
122       complete -F _wget_completion_loader wget-m wget-wrapper ww
123    fi
124
125    for cmd in distribute ftp lftp r rsync \
126       s scp ssh smbclient tcpdump tshark wireshark; do
127          ! has_completion $cmd && complete -o default -A hostname $cmd;
128    done
129
130    if has_completion rsync; then
131       _rsync_completion_loader() {
132          _completion_loader rsync
133          complete -F _rsync r
134          unset _rsync_completion_loader
135          return 124
136       }
137       complete -F _rsync_completion_loader r
138    fi
139
140    if has_completion ssh; then
141       _ssh_completion_loader() {
142          _completion_loader ssh
143          complete -F _ssh s
144          unset _ssh_completion_loader
145          return 124
146       }
147       complete -F _ssh_completion_loader s
148    fi
149
150    unset has_completion
151
152    complete -A job bg fg j jobs wait
153    complete -A variable unset
154
155    if [ -d "$HOME/lib/config" ]; then
156       complete -W "`cd \"$HOME/lib/config\" && echo *`" include
157    fi
158    complete -W "`echo $BROWSER | sed 's/:/ /g'`" start-browser
159
160    #if type -p pip >/dev/null 2>&1; then
161    #   eval "`pip completion --bash`"
162    #   rm -rf /tmp/pip_build_"$USER"
163    #fi
164
165 elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
166    back() { cd - "$@"; }
167    clo() { clear; exit; }
168    j() { jobs; }
169
170 else
171    clo() { clear; exit; }
172 fi
173
174
175 # clear history, clear screen and logout
176 #chlo() { cd; unset HISTFILE; rm -f .sh_history; history -c; clo; }
177
178
179 #Pwd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)\/\(.*\)\/\(.*\)/...\/\2\/\3\/\4/"; }
180 #PWd() { pwd | sed "s/.*\/\(.*\)\/\(.*\)/...\/\2/"; }
181
182
183 psg()   { ps auxw   | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
184 pswg()  { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\)'; }
185
186 # Like pgrep -f
187 pidOf() { ps auxwww | grep -i "$@" | grep -v '\(ps auxw\|grep\|pidOf\|KillAll\)' | awk '{print $2}'; }
188
189 # A kind of pkill/killall
190 KillAll() {
191    if [ -z "$1" -o -n "$3" ]; then
192       echo "Usage: KillAll [-signal] proc_regexp" >&2
193       return 1
194    fi
195    if [ -z "$2" ]; then
196       kill `pidOf "$1"`
197    else
198       kill "$1" `pidOf "$2"`
199    fi
200 }
201
202
203 if test -x /usr/bin/git >/dev/null 2>&1; then
204    # chdir to a remote's directory (if the remote is on the local FS)
205    cdremote() {
206       if [ -z "$1" -o -n "$2" ]; then
207          echo "Usage: cdremote remote_name" >&2
208          return 1
209       fi
210       cd "`git config --get remote.$1.url`"
211    }
212
213    if test -n "$BASH_VERSION"; then
214       # completion for global aliases in .gitconfig
215
216       # fixup rbi rbia rbiap rbip - do refs name completion
217       _git_fixup() { __gitcomp_nl "$(__git_refs)" ; }
218       _git_rbi() { __gitcomp_nl "$(__git_refs)" ; }
219       _git_rbia() { __gitcomp_nl "$(__git_refs)" ; }
220       _git_rbiap() { __gitcomp_nl "$(__git_refs)" ; }
221       _git_rbip() { __gitcomp_nl "$(__git_refs)" ; }
222       #
223       # push-to-all-remotes - do branch name completion
224       _git_push_to_all_remotes() { __gitcomp_nl "$(__git_heads)" ; }
225
226       # list remotes with URLs matching a regexp
227       _list_remotes() {
228          if [ -z "$1" -o -n "$2" ]; then
229             echo "Usage: _list_remotes remote_regexp" >&2
230             return 1
231          fi
232          GIT_REMOTES=""
233          local remote
234          for remote in `git remote`; do
235             if git config --get remote.$remote.url | grep -q "$1"; then
236                GIT_REMOTES="$GIT_REMOTES $remote"
237             fi
238          done
239       }
240
241       # completion for cdremote and git-open - list remotes with a pattern
242       _list_remotes_completion() {
243          local cur="${COMP_WORDS[COMP_CWORD]}";
244          _list_remotes "$1"
245          COMPREPLY=(`compgen -W "$GIT_REMOTES" -- "$cur"`)
246          unset GIT_REMOTES
247       }
248
249       # completion for cdremote - list remotes with directories as URLs
250       _cdremote_complete() {
251          _list_remotes_completion '^\(/\|\.\./\)' # (/ or ../ at the beginning)
252       }
253
254       complete -F _cdremote_complete cdremote
255
256       # completion for git-open - list remotes with http(s) URLs
257       _git_open() {
258          _list_remotes_completion '^http\(s\)\?://'
259       }
260
261       complete -F _git_open git-open
262    fi
263 fi
264
265
266 include() {
267    cfg="$1"
268    if [ -f "./$cfg" -a -r "./$cfg" ]; then
269       echo "Reading config file \`$cfg'" 1>&2
270       . "./$cfg"
271    elif [ -f "$HOME/lib/config/$cfg" -a -r "$HOME/lib/config/$cfg" ]; then
272       echo "Reading config file \`$HOME/lib/config/$cfg'" 1>&2
273       . "$HOME/lib/config/$cfg"
274    else
275       echo "Cannot find config file \`$cfg'" 1>&2
276    fi
277 }
278
279
280 mc() {
281    if test -n "$BASH_VERSION"; then
282       MC_SAVE_OPS1="$OPS1"
283       OPS1="\u@\h "
284    fi
285
286    if [ -n "$SLOWTERM" ]; then
287       MC_SLOW="--slow"
288    fi
289
290    case "$TERM" in
291       screen*) # screen, screen.rxvt
292          if [ "$TERM" = screen.rxvt ]; then
293             MC_SAVE_TERM="$TERM"
294             TERM=rxvt
295          fi
296          MC_XTERM="-x"
297       ;;
298    esac
299
300    #TMPDIR="$HOME"/tmp
301    #export TMPDIR
302
303    MC_FOUND=NO
304
305    for wrapper in \
306          /usr/local/share/mc/bin/mc-wrapper.sh \
307          /usr/local/libexec/mc/mc-wrapper.sh \
308          /usr/share/mc/bin/mc-wrapper.sh; do
309       if [ -r $wrapper ]; then
310          . $wrapper $MC_SLOW $MC_XTERM "$@"
311          rc=$?
312          MC_FOUND=YES
313          break
314       fi
315    done
316
317    if [ $MC_FOUND = NO ]; then
318       for mc in /usr/local/bin/mc /usr/bin/mc; do
319          if [ -x $mc ]; then
320             MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER"
321             if [ ! -d MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER" ]; then
322                MC_TMP_DIR="${TMPDIR-/tmp}"
323             fi
324             MC_PWD_FILE="$MC_TMP_DIR/mc.pwd.$$"
325             mc_type="`mc_type.py $mc`"
326             if [ "$mc_type" = old ]; then
327                $mc -P $MC_SLOW $MC_XTERM "$@" > "$MC_PWD_FILE"
328             elif [ "$mc_type" = new ]; then
329                $mc -P "$MC_PWD_FILE" $MC_SLOW $MC_XTERM "$@"
330             else
331                continue
332             fi
333             rc=$?
334             MC_FOUND=YES
335             cd "`cat \"$MC_PWD_FILE\"`" && /bin/rm "$MC_PWD_FILE"
336             break
337          fi
338       done
339    fi
340
341    if [ $MC_FOUND = NO ]; then
342       echo "Cannot find mc-wrapper.sh or mc" >&2
343       rc=1
344    fi
345
346    [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
347    [ -n "$MC_SAVE_TERM" ] && TERM="$MC_SAVE_TERM"
348    unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SAVE_TERM \
349          MC_SLOW MC_TMP_DIR MC_XTERM
350
351    return $rc
352 }
353
354
355 mkcd() {
356    if [ $# -ne 1 ]; then
357       echo "Usage: mkcd directory_name" >&2
358    elif [ -d "$1" ]; then
359       cd "$1"
360    elif [ -e "$1" ]; then
361       echo "Error: $1 is a file" >&2
362    else
363       mkdir -p "$1" && cd "$1"
364    fi
365 }
366
367
368 if which tmux >/dev/null 2>&1; then
369    tmux() {
370       case "$TERM" in
371          rxvt)
372             TERM=rxvt-unicode command tmux "$@"
373          ;;
374
375          *)
376             command tmux "$@"
377          ;;
378       esac
379    }
380 fi
381
382
383 #if which pyenv >/dev/null 2>&1; then
384 #   eval "`pyenv init -`"
385 #   eval "`pyenv virtualenv-init -`"
386 #fi
387
388 if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then
389    source /usr/local/bin/virtualenvwrapper_lazy.sh
390 fi
391
392
393 if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then
394    X() { startx >> .Xserver.log 2>&1; cyr; }
395 fi
396
397 x() { exit; }