]> git.phdru.name Git - dotfiles.git/blob - .shellrc
.shellrc: remove pip's tmp directory
[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 x() { exit; }
168 X() { startx >> .Xserver.log 2>&1; cyr; }
169
170
171 include()
172 {
173    cfg="$1"
174    if [ -f "./$cfg" -a -r "./$cfg" ]; then
175       echo "Reading config file \`$cfg'" 1>&2
176       . "./$cfg"
177    elif [ -f "$HOME/lib/config/$cfg" -a -r "$HOME/lib/config/$cfg" ]; then
178       echo "Reading config file \`$HOME/lib/config/$cfg'" 1>&2
179       . "$HOME/lib/config/$cfg"
180    else
181       echo "Cannot find config file \`$cfg'" 1>&2
182    fi
183 }
184
185
186 mc() {
187    case "$SHELL" in
188       */bash)
189          MC_SAVE_OPS1="$OPS1"
190          OPS1="\u@\h "
191       ;;
192    esac
193
194    if [ -n "$SLOWTERM" ]; then
195       MC_SLOW="--slow"
196    fi
197
198    case "$TERM" in
199       screen*) # screen, screen.rxvt
200          if [ "$TERM" = screen.rxvt ]; then
201             MC_SAVE_TERM="$TERM"
202             TERM=rxvt
203          fi
204          MC_XTERM="-x"
205       ;;
206    esac
207
208    #TMPDIR="$HOME"/tmp
209    #export TMPDIR
210
211    MC_FOUND=NO
212
213    for wrapper in \
214          /usr/local/share/mc/bin/mc-wrapper.sh \
215          /usr/local/libexec/mc/mc-wrapper.sh \
216          /usr/share/mc/bin/mc-wrapper.sh; do
217       if [ -r $wrapper ]; then
218          . $wrapper $MC_SLOW $MC_XTERM "$@"
219          rc=$?
220          MC_FOUND=YES
221          break
222       fi
223    done
224
225    if [ $MC_FOUND = NO ]; then
226       for mc in /usr/local/bin/mc /usr/bin/mc; do
227          if [ -x $mc ]; then
228             MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER"
229             if [ ! -d MC_TMP_DIR="${TMPDIR-/tmp}/mc-$USER" ]; then
230                MC_TMP_DIR="${TMPDIR-/tmp}"
231             fi
232             MC_PWD_FILE="$MC_TMP_DIR/mc.pwd.$$"
233             mc_type="`mc_type.py $mc`"
234             if [ "$mc_type" = old ]; then
235                $mc -P $MC_SLOW $MC_XTERM "$@" > "$MC_PWD_FILE"
236             elif [ "$mc_type" = new ]; then
237                $mc -P "$MC_PWD_FILE" $MC_SLOW $MC_XTERM "$@"
238             else
239                continue
240             fi
241             rc=$?
242             MC_FOUND=YES
243             cd "`cat \"$MC_PWD_FILE\"`" && /bin/rm "$MC_PWD_FILE"
244             break
245          fi
246       done
247    fi
248
249    if [ $MC_FOUND = NO ]; then
250       echo "Cannot find mc-wrapper.sh or mc" >&2
251       rc=1
252    fi
253
254    [ -n "$MC_SAVE_OPS1" ] && OPS1="$MC_SAVE_OPS1"
255    [ -n "$MC_SAVE_TERM" ] && TERM="$MC_SAVE_TERM"
256    unset MC_FOUND MC_PWD_FILE MC_SAVE_OPS1 MC_SAVE_TERM \
257          MC_SLOW MC_TMP_DIR MC_XTERM
258
259    return $rc
260 }
261
262
263 mkcd() {
264    if [ $# -ne 1 ]; then
265       echo "Usage: mkcd directory_name" >&2
266    elif [ -d "$1" ]; then
267       cd "$1"
268    elif [ -e "$1" ]; then
269       echo "Error: $1 is a file" >&2
270    else
271       mkdir -p "$1" && cd "$1"
272    fi
273 }
274
275
276 tmux() {
277    case "$TERM" in
278       rxvt)
279          TERM=rxvt-unicode command tmux "$@"
280       ;;
281
282       *)
283          command tmux "$@"
284       ;;
285    esac
286 }
287
288
289 if [ -f /usr/local/bin/virtualenvwrapper_lazy.sh ]; then
290    source /usr/local/bin/virtualenvwrapper_lazy.sh
291 fi
292
293 if which pyenv >/dev/null 2>&1; then
294    eval "`pyenv init -`"
295 fi