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