Update.
[scripts.git] / bashrc
1 # -*-Shell-script-*-
2
3 #########################################################################
4 # This program is free software: you can redistribute it and/or modify  #
5 # it under the terms of the version 3 of the GNU General Public License #
6 # as published by the Free Software Foundation.                         #
7 #                                                                       #
8 # This program is distributed in the hope that it will be useful, but   #
9 # WITHOUT ANY WARRANTY; without even the implied warranty of            #
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      #
11 # General Public License for more details.                              #
12 #                                                                       #
13 # You should have received a copy of the GNU General Public License     #
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.  #
15 #                                                                       #
16 # Written by and Copyright (C) Francois Fleuret                         #
17 # Contact <francois@fleuret.org> for comments & bug reports             #
18 #########################################################################
19
20 # The site-specific and confidential settings are in another file
21
22 PRIVATE_BASHRC="${HOME}/private/bashrc.perso"
23
24 # If the MANPATH is not set, set it
25
26 [ "${MANPATH}" ] || MANPATH=$(manpath)
27
28 # If the private bashrc exists, execute it
29
30 [ -f "${PRIVATE_BASHRC}" ] && source "${PRIVATE_BASHRC}"
31
32 # !!! THIS HAS TO BE HERE EVEN IN THE NON-INTERACTIVE PART OR YOU WILL
33 # LOSE YOU PREVIOUS HISTORY !!!
34
35 export HISTFILESIZE=20000
36 export HISTSIZE=${HISTFILESIZE}
37
38 export HISTIGNORE="${HISTIGNORE}:&:[ ]*"
39
40 # I want to save the command time, but I do not want to see it in
41 # history
42
43 export HISTTIMEFORMAT=""
44
45 shopt -s histappend
46
47 # I realized that most of my settings are meaningful only in
48 # interactive mode. This should maybe be done more properly through
49 # using different .bash_profile and .bash_login
50
51 [[ ${TERM} == "dumb" ]] || [ ! -t 0 ] && return
52
53 # Remove the annoying beeps in console
54
55 setterm -blength 0
56
57 ######################################################################
58 ## The interactive part
59
60 export VT_RESET=$'\e[0m'
61 export VT_BOLD=$'\e[1m'
62 export VT_UNDERLINE=$'\e[4m'
63 export VT_BLINK=$'\e[5m'
64
65 export VT_SET_TITLE=$'\e]0;'
66 export VT_END_TITLE=$'\007'
67
68 export VT_BLACK_FG=$'\e[30m'
69 export VT_RED_FG=$'\e[31m'
70 export VT_GREEN_FG=$'\e[32m'
71 export VT_YELLOW_FG=$'\e[33m'
72 export VT_BLUE_FG=$'\e[34m'
73 export VT_MAGENTA_FG=$'\e[35m'
74 export VT_CYAN_FG=$'\e[36m'
75 export VT_WHITE_FG=$'\e[37m'
76
77 export VT_BLACK_BG=$'\e[40m'
78 export VT_RED_BG=$'\e[41m'
79 export VT_GREEN_BG=$'\e[42m'
80 export VT_YELLOW_BG=$'\e[43m'
81 export VT_BLUE_BG=$'\e[44m'
82 export VT_MAGENTA_BG=$'\e[45m'
83 export VT_CYAN_BG=$'\e[46m'
84 export VT_WHITE_BG=$'\e[47m'
85
86 # Colorize man pages!
87
88 export LESS_TERMCAP_us=${VT_GREEN_FG}
89 export LESS_TERMCAP_ue=${VT_RESET}
90 export LESS_TERMCAP_md=${VT_BLUE_FG}${VT_BOLD}
91 export LESS_TERMCAP_me=${VT_RESET}
92
93 # export LESS_TERMCAP_md=$'\e[1;34;40m'
94
95 # This prevents ^S from freezing the shell
96
97 # stty -ixon
98
99 ulimit -c unlimited
100
101 alias ..='cd ..'
102 alias -- -='cd -'
103 alias rm='rm -i'
104 alias mv='mv -i'
105 # alias chmod='chmod -v'
106 alias chmod='chmod -c'
107 alias cp='cp -i'
108 alias rd=rmdir
109 alias md='mkdir -v'
110 alias ps='ps uxaf'
111 alias df='df -hT --sync'
112 alias grep='grep -i -E --color=auto'
113 alias find='ionice -c3 find'
114 alias pd=pushd
115 alias val='valgrind --leak-check=full --show-reachable=yes --db-attach=yes '
116
117 alias s='screen -d -R -U && clear'
118
119 function nh () {
120     export HISTFILE=/dev/null
121     unalias cd
122 }
123
124 function ding () {
125     if [[ $1 && $(which winshepherd.sh) ]]; then
126         play -q ~/local/sounds/deskbell.wav &
127         unset E_APP_WINDOW
128         winshepherd.sh message green "$1"
129     else
130         play -q ~/local/sounds/deskbell.wav
131     fi
132 }
133
134 # alias kj="keyjnote -s -D 1000 -t Crossfade -T 100"
135 alias impressive="impressive -s -D 1000 -t Crossfade -T 100"
136
137 # alias fdupes='fdupes -r .'
138
139 # ls colors
140
141 if [ -e "${HOME}/.dircolors" ]; then
142     eval $(dircolors "${HOME}/.dircolors")
143     alias ls='ls --group-directories-first --color'
144     alias lt='ls --color -gohtr --time-style="+%Y %b %d %H:%M"'
145     alias ll='ls --color -goh --time-style="+%Y %b %d %H:%M"'
146     alias lll='ls --color -lth'
147     alias l='ls --color -I "*~" -I "*.o"'
148     alias less='less -R'
149 else
150     alias ls='ls --group-directories-first'
151     alias lt='ls -gohtr --time-style="+%Y %b %d %H:%M"'
152     alias ll='ls -goh --time-style="+%Y %b %d %H:%M"'
153     alias lll='ls -lth'
154     alias l='ls -I "*~" -I "*.o"'
155 fi
156
157 export EDITOR=emacsclient
158 export GIT_EDITOR=${EDITOR}
159
160 ######################################################################
161 # Ignored extensions when completing
162
163 # export FIGNORE="CVS"
164
165 function latexdiff () {
166     # wdiff -n \
167     # -w $'\033[30;43m'"[$1]"$'\033[30;41m ' -x $'\033[0m' \
168     # -y $'\033[30;43m'"[$2]"$'\033[30;42m ' -z $'\033[0m' \
169     # $*
170
171     wdiff -n \
172         -w $'\033[30;41m' -x $'\033[0m' \
173         -y $'\033[30;42m' -z $'\033[0m' \
174         $*
175
176     # | \grep $'\033'"\|section{"
177 }
178
179 # Looks for the most recent .log and pdflatex + bibtex the
180 # corresponding tex file
181
182 function rl () {
183     RECENT_LOG=$(find -maxdepth 1 -name "*.log" -type f | head -1)
184     if [[ ${RECENT_LOG} ]]; then
185         FILE=${RECENT_LOG/.log/}
186         pdflatex ${FILE}
187         bibtex ${FILE}
188         pdflatex ${FILE}
189         pdflatex ${FILE}
190         if [[ "$1" == "--xpdf" ]]; then
191             xpdf ${FILE}.pdf
192         fi
193     else
194         echo "Can not find a recent log." >&2
195         return 1
196     fi
197 }
198
199
200 ######################################################################
201 # Functions
202
203 # Find a file whose name contains a substring
204
205 function fn () {
206     name=$1
207     shift
208     find "$@" -name "*${name}*";
209 }
210
211 function bak () {
212     while [[ "$1" ]]; do
213         cp "$1" "$1".bak
214         shift
215     done
216 }
217
218 function ua () {
219
220     [[ "$1" ]] || ( echo "Universal unarchive: ua <file> [<file> ...]" >&2 && return 1)
221
222     while [[ "$1" ]]; do
223
224         case "$1" in
225
226             *.tgz|*.tar.gz|*.tbz|*.tar.bz2)
227                 tar xvf "$1"
228                 ;;
229
230             *.rar)
231                 unrar -kb x "$1"
232                 ;;
233
234             *.zip)
235                 unzip "$1"
236                 ;;
237
238             *)
239                 echo "Unknown file extension $1"
240                 ;;
241         esac
242
243         shift
244
245     done
246 }
247
248 # Create a dir and cd there
249
250 function mcd () {
251     mkdir -vp "$1"
252     cd "$1"
253 }
254
255 # Capture the screen in a dated png
256
257 function cap () {
258     if [[ $2 ]]; then
259         name=$2
260     else
261         name="capture-$(date +%s).png"
262     fi
263     echo "Waiting $1 s and saving to ${name}."
264     [[ "$1" ]] && sleep "$1"
265     echo "Please click on the window to capture."
266     xwd  | convert - ${name}
267     \ls -l ${name}
268 }
269
270 # Create and CD in a /tmp/tmp.XXXXXX directory. With the '-'
271 # arguments, do not create one and CD in the most recent instead
272
273 function cdt () {
274     if [[ "$1" ]]; then
275         if [[ "$1" == "-" ]]; then
276             cd $(\ls -td /tmp/tmp.?????? | head -1)
277         else
278             echo "USAGE: cdt [-]" >&2
279             return 1
280         fi
281     else
282         cd $(mktemp -d /tmp/tmp.XXXXXX)
283     fi
284 }
285
286 alias t='cd /tmp'
287
288 function trash () {
289     TRASH=$(date +/tmp/trash-%Y-%b-%d-%Hh)
290
291     if [[ -d ${TRASH} ]]; then
292         echo "Re-use ${TRASH}"
293     else
294         mkdir ${TRASH}
295         echo "Created ${TRASH}"
296     fi
297
298     mv "$@" ${TRASH}
299     echo "Trashed $@"
300 }
301
302 # alias trash=trash.sh
303
304 function mmsget () {
305     mplayer "$1" -dumpstream -dumpfile $(basename "$1")
306 }
307
308 function quicktex () {
309     if [[ $1 ]]; then
310         MAIN=$1
311     else
312         MAIN=$(\ls -t *.tex | head -1 | sed -r -e 's/\.tex//')
313     fi
314     pdflatex ${MAIN}
315     bibtex ${MAIN}
316     pdflatex ${MAIN}
317     pdflatex ${MAIN}
318     xpdf ${MAIN}.pdf
319 }
320
321 ######################################################################
322 # http://www.reddit.com/r/linux/comments/akt3j/a_functional_programming_style_map_function_for/
323
324 function map () {
325     local command i rep
326     if [ $# -lt 2 ] || [[ ! "$@" =~ :[[:space:]] ]];then
327         echo "Invalid syntax." >&2; return 1
328     fi
329     until [[ "$1" =~ : ]]; do
330         command="$command $1"; shift
331     done
332     command="$command ${1%:}"; shift
333     for i in "$@"; do
334         if [[ $command =~ \{\} ]];then
335             rep="${command//\{\}/\"$i\"}"
336             eval "${rep//\\/\\\\}"
337         else
338             eval "${command//\\/\\\\} \"${i//\\/\\\\}\""
339         fi
340     done
341 }
342
343 ######################################################################
344 ## A version of pho which stores the image numbers in environment
345 ## variables
346
347 function pho () {
348     TEMP=$(mktemp /tmp/pho.XXXXXXX)
349     $(which pho) "$@" | tee ${TEMP}
350     PHO_NOTE_1=$(grep ^"Note 1: " ${TEMP} | sed -e "s/^[^:]*: //")
351     PHO_NOTE_2=$(grep ^"Note 2: " ${TEMP} | sed -e "s/^[^:]*: //")
352     PHO_NOTE_3=$(grep ^"Note 3: " ${TEMP} | sed -e "s/^[^:]*: //")
353     PHO_NOTE_R90=$(grep ^"Rotate 90 \(CW\): " ${TEMP} | sed -e "s/^[^:]*: //")
354     PHO_NOTE_R180=$(grep ^"Rotate 180: " ${TEMP} | sed -e "s/^[^:]*: //")
355     PHO_NOTE_R270=$(grep ^"Rotate -90 \(CCW\): " ${TEMP} | sed -e "s/^[^:]*: //")
356     [[ "${PHO_NOTE_1}" ]] || unset PHO_NOTE_1
357     [[ "${PHO_NOTE_2}" ]] || unset PHO_NOTE_2
358     [[ "${PHO_NOTE_3}" ]] || unset PHO_NOTE_3
359     [[ "${PHO_NOTE_R90}" ]] || unset PHO_NOTE_R90
360     [[ "${PHO_NOTE_R180}" ]] || unset PHO_NOTE_R180
361     [[ "${PHO_NOTE_R270}" ]] || unset PHO_NOTE_R270
362     \rm ${TEMP}
363 }
364
365 # function rotjpeg () {
366 # if [ "$1" == "90" ] || [ "$1" == "180" ] || [ "$1" == "270" ]; then
367 # TEMP=$(mktemp /tmp/rotjpeg.XXXXXX)
368 # echo jpegtran -rotate "$1" -copy all $2 > ${TEMP}
369 # echo cp $2 ${2/jpg/}original.jpg
370 # echo cp ${TEMP} $2
371 # rm ${TEMP}
372 # else
373 # echo "Can not rotate with an angle of "$1" degrees."
374 # fi
375 # }
376
377 ######################################################################
378 ## A version of date that shows the time at home if TZ is set
379
380 function dt () {
381     echo "Local: $(date)"
382     if [[ ${TZ} ]]; then
383         unset TZ
384         echo "Home:  $(date)"
385     fi
386 }
387
388 ######################################################################
389 ## ifup / ifdown with sudo and memorization of the network
390
391 ## When invoked without an argument netup uses the same argument as
392 ## the previous time
393
394 ## When invoked without an argument netdown removes the last interface
395 ## which was netuped
396
397 [[ ${NETUP_HISTORY} ]] || NETUP_HISTORY="${HOME}/.netup_history"
398
399 function netup () {
400     if [[ $(\ifconfig -s | grep -v ^"(Iface|lo) ") ]]; then
401         echo "There is already interface(s) up." >&2
402         return 1
403     fi
404
405     if [[ $(\ps -C dhclient | tail -n +2) ]]; then
406         echo "There is already a dhcp client running." >&2
407         return 1
408     fi
409
410     if [[ $(\ps -C wpa_supplicant | tail -n +2) ]]; then
411         echo "There is already a wpa_supplicant running." >&2
412         return 1
413     fi
414
415     if [[ ! "$@" ]] && [[ -s ${NETUP_HISTORY} ]]; then
416         echo "netup <interface>" >&2
417         return 1
418         # # If we have no argument and there is a .netup_history, use it
419         # ARGS=$(cat ${NETUP_HISTORY})
420     else
421         # Otherwise uses the given arguments, and store them
422         ARGS="$@"
423         echo ${ARGS} > ${NETUP_HISTORY}
424     fi
425
426     if [[ -n "${PRIVATE_INTERFACE_DEFINITION}" ]]; then
427         ARGS="-i ${PRIVATE_INTERFACE_DEFINITION} ${ARGS}"
428     fi
429
430     echo "Executing ${VT_GREEN_FG}[sudo ifup ${ARGS}]${VT_RESET}"
431     sudo ifup ${ARGS}
432
433     # Ugly hack to remove the dsl modem dns server when we add
434     # explicitely a dns in the /etc/network/interfaces
435
436     REMOVE_LOCAL_DNS=/usr/local/bin/remove-local-dns.sh
437     # REMOVE_LOCAL_DNS=${HOME}/sources/scripts/remove-local-dns.sh
438
439     if [[ -x ${REMOVE_LOCAL_DNS} ]]; then
440         echo "Executing ${VT_GREEN_FG}[sudo ${REMOVE_LOCAL_DNS} 192.168]${VT_RESET}"
441         sudo ${REMOVE_LOCAL_DNS} 192.168
442     fi
443 }
444
445 function netdown () {
446     if [[ ! "$@" ]] && [[ -s ${NETUP_HISTORY} ]]; then
447         # If there are no arguments and there is a .netup_history, get the
448         # interface from it
449         ARGS=$(tail -1 ${NETUP_HISTORY} | sed -e "s/=.*$//")
450     else
451         # Otherwise, use the standard ifdown
452         ARGS="$@"
453     fi
454
455     if [[ -n "${PRIVATE_INTERFACE_DEFINITION}" ]]; then
456         ARGS="-i ${PRIVATE_INTERFACE_DEFINITION} ${ARGS}"
457     fi
458
459     echo "Executing sudo ${VT_GREEN_FG}[ifdown ${ARGS}]${VT_RESET}"
460     sudo ifdown ${ARGS}
461
462     # if [[ $(\ps -C dhclient | tail -n +2) ]]; then
463     # echo "There is still a dhcp client running." >&2
464     # return 1
465     # fi
466
467     # if [[ $(\ps -C wpa_supplicant | tail -n +2) ]]; then
468     # echo "There is still a wpa_supplicant running." >&2
469     # return 1
470     # fi
471 }
472
473 function checkgw () {
474     GW=$(route -n | grep ^0.0.0.0 | awk '{print $2}')
475     if [[ -n "${GW}" ]]; then
476         ping ${GW}
477     else
478         echo "Can not find a getaway." >&2
479         return 1
480     fi
481 }
482
483 ######################################################################
484 # Show the most recent files, no scroll
485
486 function lr () {
487     HEIGHT=$(stty size | awk '{print $1}')
488     WIDTH=$(stty size | awk '{print $2}')
489     \ls -goth --time-style="+%Y %b %d %H:%M" "$@" | \
490         head -$((HEIGHT-2)) | \
491         cut -b1-${WIDTH}
492 }
493
494 ######################################################################
495 # cd and ls into a directory
496 # [from http://www.oreillynet.com/onlamp/blog/2007/01/whats_in_your_bash_history.html]
497
498 # function c () { cd "$@" && lr; }
499
500 ######################################################################
501 # You can change the xterm background color on the fly!
502
503 function setxtermbg () {
504     echo -n $'\e]11;'$1$'\007'
505 }
506
507 ######################################################################
508 # Shuffle the lines from the stdin
509
510 function shuffle () {
511     SEED=$1
512     [[ $SEED ]] || SEED=0
513     awk 'BEGIN{srand('${SEED}')} { print rand()" "$0 }' | sort -g | sed -e "s/^[0-9\.e\-]* //"
514 }
515
516 ######################################################################
517 # Stores the last entered command into a file
518
519 KEPT_COMMANDS=${HOME}/.kept_bash_commands
520
521 function keep () {
522     if [[ ${KEPT_COMMANDS} ]]; then
523         LINE="$*"
524         [[ "${LINE}" ]] || LINE=$(history | tail -2 | head -1 | sed -e "s/^[0-9 ]*//")
525         echo $LINE
526         echo $(date)": "${LINE} >> ${KEPT_COMMANDS}
527     else
528         echo "You have to set \$KEPT_COMMANDS"
529     fi
530 }
531
532 ######################################################################
533 # I sometime burn CDs and DVDs
534
535 function burn () {
536     DEVICE="/dev/cdrw"
537     if [[ ! "$1" ]]; then
538         echo "burn <iso name | dirname>" >&2
539     elif [[ -f "$1" ]]; then
540         if [[ $(file "$1" | grep "ISO 9660") ]]; then
541             wodim -eject -v dev=${DEVICE} "$1"
542         else
543             echo "Unknown type of $1" >&2
544         fi
545     elif [[ -d "$1" ]]; then
546         [[ "${TMP_ROOT}" ]] || TMP_ROOT=/tmp/
547         echo "Using ${TMP_ROOT} as temporary directory."
548         TMP=$(mktemp ${TMP_ROOT}/cdimage.XXXXXX) && \
549             genisoimage -input-charset iso8859-1 -r -o ${TMP} "$1" && \
550             wodim -eject -v dev=${DEVICE} ${TMP}
551         rm -f ${TMP}
552     else
553         echo "Can not find $1" >&2
554     fi
555 }
556
557 ######################################################################
558 # And watch DVDs too!
559
560 function dvd () {
561
562     echo
563     echo " ! @   Seek to the beginning of the previous/next chapter"
564     echo " j     Cycle through the available subtitles"
565     echo " o     Show/hide the timing"
566     echo " x z   Subtitle delay"
567     echo " / *   Volume"
568     echo
569
570     if [[ "$1" ]]; then
571         dvd_device="$1"
572         shift
573     else
574         dvd_device="/dev/dvd"
575     fi
576
577     title="1"
578
579     if [[ "$1" ]]; then
580         title=$1
581         shift
582     fi
583
584     # -vc ffmpeg12 -vf yadif
585
586     mplayer > /dev/null \
587         -stop-xscreensaver \
588         -quiet \
589         -alang en -slang en \
590         -softvol -softvol-max 1000 \
591         -dvd-device ${dvd_device} $* dvd://${title}
592 }
593
594 function ripdvd () {
595     if [[ -e "/dev/dvd" ]]; then
596         DVD_DEVICE="/dev/dvd"
597     elif [[ -e "/dev/dvd3" ]]; then
598         DVD_DEVICE="/dev/dvd3"
599     else
600         echo "Can not find the dvd device." >&2
601         return 1
602     fi
603
604     echo "Attemptin to rip from ${DVD_DEVICE}."
605
606     mkdir -p ${HOME}/dvds
607
608     cd ${HOME}/dvds
609     time dvdbackup -i ${DVD_DEVICE} -v -M $* && eject
610 }
611
612 alias ripcd=abcde
613
614 ######################################################################
615 # Upload the sources from the current directory to work
616
617 function ulsrc () {
618     if [[ ! "${MY_WORK_MACHINE}" ]]; then
619         echo "\$MY_WORK_MACHINE undefined" 1>&2
620         return 1
621     fi
622
623     DIR=${PWD/$HOME\//}
624
625     scp {Makefile,*.{cc,h,sh}} ${MY_WORK_MACHINE}:${DIR}
626
627     echo "Uploaded to ${MY_WORK_MACHINE}:${DIR}/"
628 }
629
630 ######################################################################
631 # Create small images from images
632
633 function mksmall () {
634
635     PARAMS="-geometry 800x600"
636
637     # Auto-orient does not seem to work at all, hence the ugly hack
638     # with exif below
639
640     # PARAMS="-auto-orient -geometry 800x600"
641
642     echo "Using ${PARAMS}"
643
644     DEST_DIR=$1
645
646     [[ ${DEST_DIR} ]] || DEST_DIR=./small
647
648     mkdir -p ${DEST_DIR}
649
650     if [[ ! -d ${DEST_DIR} ]]; then
651         echo "Can not create ${DEST_DIR}" >&2
652         return
653     fi
654
655     NB_TOTAL=$(find -maxdepth 1 -type f | wc -l)
656     NB=0
657
658     for i in $(find -maxdepth 1 -type f); do
659         if [[ $(file $i | grep image) ]]; then
660             if [[ -e ${DEST_DIR}/$i ]]; then
661                 echo "The file ${DEST_DIR}/$i already exists."
662             else
663
664                 # orientation=$(exif $i \
665                 # | grep ^Orientation \
666                 # | head -1 \
667                 # | sed -e "s/^[^|]*|//" \
668                 # | sed -e "s/ *$//")
669
670                 # case ${orientation} in
671                 # ""|"top - left")
672                 # rotation_cmd=""
673                 # ;;
674
675                 # "right - top")
676                 # rotation_cmd="-rotate 90"
677                 # ;;
678
679                 # "left - bottom")
680                 # rotation_cmd="-rotate 270"
681                 # ;;
682
683                 # *)
684                 # rotation_cmd=""
685                 # echo "Unknown orientation \"${orientation}\" !"
686                 # ;;
687                 # esac
688
689                 if [[ $(file ${i/%.*/}.* | grep -E movie) ]] ; then
690                     CAPTION_PARAMS="-font FreeSans-Bold -pointsize 32 -fill green -annotate +10+32 Video"
691                 else
692                     CAPTION_PARAMS=""
693                 fi
694
695                 convert ${rotation_cmd} $i ${PARAMS} ${CAPTION_PARAMS} ${DEST_DIR}/$i
696             fi
697
698             \ls -lt ${DEST_DIR}/$i
699         fi
700
701         NB=$((NB+1))
702
703         echo "$((NB*100/NB_TOTAL))% (${NB}/${NB_TOTAL})"
704     done
705 }
706
707 ######################################################################
708 # Move a file to the ~/sources/config directory and replace it where
709 # it was by a symbolic link
710
711 function mvtoconfig () {
712     CONFIGDIR=${HOME}/sources/config
713     if [[ -d ${CONFIGDIR} ]]; then
714         NEWNAME=${CONFIGDIR}/$(basename "$1" | sed -e "s/^\.//")
715         mv "$1" $NEWNAME
716         ln -s $NEWNAME $1
717     else
718         echo "Can not find ${CONFIGDIR}"
719     fi
720 }
721
722 ######################################################################
723 # Track uncommited files (I presume this is very ugly from a real git
724 # user perspective)
725
726 function git-fm () {
727     CURRENT_DIR=$(pwd)
728     NB_SUBDIR=0
729
730     for i in $(find -name ".git"); do
731         NB_SUBDIR=$((NB_SUBDIR+1))
732         cd ${CURRENT_DIR}/$(dirname $i)
733         NB_MODIFIED=$(git status | grep modified | wc -l)
734         if [[ ${NB_MODIFIED} -gt 0 ]]; then
735             echo "$(dirname $i) (${NB_MODIFIED})"
736             git status | grep modified \
737                 | sed -e "s/^#\t/    /" | sed -e "s/modified: *//"
738         fi
739     done
740
741     cd ${CURRENT_DIR}
742
743     echo "Visited ${NB_SUBDIR} directories."
744 }
745
746 function vcup () {
747     if [[ "$1" ]]; then
748         CURRENT=${PWD}
749         while [[ "$1" ]]; do
750             cd ${CURRENT}
751             cd $1
752             if [[ -d ".git" ]]; then
753                 echo "${PWD} is under GIT"
754                 git pull
755             elif [[ -d ".svn" ]]; then
756                 echo "${PWD} is under SVN"
757                 svn update
758             else
759                 echo "No known versioning system."
760             fi
761             shift
762         done
763         cd ${CURRENT}
764     else
765         vcup .
766     fi
767 }
768
769 ######################################################################
770 # Downloads torrents located in ${BT_DIR}/torrents/ and puts the
771 # result in the ${BT_DIR}
772
773 function bt () {
774     if [[ ${BT_DIR} ]]; then
775         if [[ -d "${BT_DIR}/torrents" ]]; then
776             if [[ "$1" ]]; then
777                 mv "$1" ${BT_DIR}/torrents
778             fi
779             if [[ "$(ps auxwww | grep btlaunchmanycurses | grep -v grep)" ]]; then
780                 echo "A client is already running."
781             else
782                 cd ${BT_DIR} && screen btlaunchmanycurses torrents --max_upload_rate 32
783             fi
784         else
785             echo "Directory ${BT_DIR}/torrents does not exist."
786         fi
787     else
788         echo "You have to set \$BT_DIR."
789     fi
790 }
791
792 ######################################################################
793 # The complex prompt policy
794
795 export PS1
796
797 if [ "${CONSOLE}" == "yes" ]; then
798     PS1=""
799 else
800
801     # If the login is a standard one (as specified in
802     # IGNORED_PROMPT_LOGIN, which is set in the private bash file), do not
803     # show it. I have IGNORED_PROMPT_LOGIN="^fleuret$".
804
805     if [ ! ${IGNORED_PROMPT_LOGIN} ] || [[ ! ${USER} =~ ${IGNORED_PROMPT_LOGIN} ]]; then
806         IDENT="${USER}"
807     fi
808
809     # If the display is not the main one, make the assumption that the
810     # shell is not running on the localhost, and show the hostname
811
812     [ "${DISPLAY}" != ":0.0" ] && IDENT="${IDENT}@\h"
813
814     # If there is the login or the hostname, add a ":" to the prompt
815
816     [ "${IDENT}" ] && IDENT="${IDENT}:"
817
818     # If we are root, show that in red
819
820     if [[ ${USER} == "root" ]]; then
821         PS1="\[${VT_RED_BG}${VT_WHITE_FG}\]${IDENT}\w\[${VT_RESET}\] "
822     else
823         PS1="\[${VT_WHITE_BG}${VT_BLACK_FG}\]${IDENT}\w\[${VT_RESET}\] "
824     fi
825
826     # In an xterm, show the hostname and path in the title bar, highlight
827     # the prompt
828
829     # [ "${TERMS_WITH_BAR}" ] || TERMS_WITH_BAR="^xterm|screen$"
830
831     # if [[ "${TERM}" =~ "${TERMS_WITH_BAR}" ]]; then
832     # PS1="\[${VT_SET_TITLE}shell@\h (\w)${VT_END_TITLE}${VT_WHITE_BG}\]${IDENT}\w\[${VT_RESET}\] "
833     # else
834     # PS1="\[${VT_WHITE_BG}\]${IDENT}\w\[${VT_RESET}\] "
835     # fi
836
837 fi
838
839 ######################################################################
840 # This implements a local history. If we are in a directory containing
841 # a writable local history file, we add the last line of the global
842 # history to it.
843
844 LOCAL_HISTORY_FILE=".local_bash_history"
845
846 function keep_local_history () {
847     if [[ -w "${LOCAL_HISTORY_FILE}" ]]; then
848         history 1 | sed -e 's/^ *[0-9]* *//' >> ${LOCAL_HISTORY_FILE}
849         TMP=$(mktemp /tmp/lh.XXXXXX)
850         \chmod 600 ${TMP}
851         uniq < ${LOCAL_HISTORY_FILE} | tail -${HISTSIZE} > ${TMP}
852         # mv would replace a symbolic link, while cp keeps it
853         \cp ${TMP} ${LOCAL_HISTORY_FILE}
854         \rm ${TMP}
855         LOCAL_HISTORY_HINT="* "
856     else
857         LOCAL_HISTORY_HINT=""
858     fi
859 }
860
861 PS1="\[${VT_WHITE_BG}\]\${LOCAL_HISTORY_HINT}\[${VT_RESET}\]${PS1}"
862
863 ######################################################################
864 # Switch off the history
865
866 function histfile_cue () {
867     if [[ ! "${HISTFILE}" == "${HOME}/.bash_history" ]]; then
868         HISTORY_CUE="[${HISTFILE}]"
869     else
870         HISTORY_CUE=""
871     fi
872 }
873
874 PS1="\[${VT_YELLOW_BG}\]\${HISTORY_CUE}\[${VT_RESET}\]${PS1}"
875
876 ######################################################################
877 # The dus command is available on my web site
878 #
879 # git clone http://fleuret.org/git/dus/
880
881 alias dus='dus -f -i'
882
883 ######################################################################
884 # The finddup command is available on my web site
885 #
886 # git clone http://fleuret.org/git/finddup/
887
888 alias finddup='finddup -p'
889
890 ######################################################################
891 # The selector command is available on my web site
892 #
893 # git clone http://fleuret.org/git/selector/
894
895 source bash-selector.sh --hist --cd
896
897 ######################################################################
898 # And we avoid to put in the history the use of the selector, which we
899 # do too often
900
901 HISTIGNORE="${HISTIGNORE}:selector-history"
902
903 ######################################################################
904
905 function selector-printer () {
906     TMP=$(mktemp /tmp/selector-printer.XXXXXX)
907     selector -o ${TMP} <(lpstat -a | awk '{print $1}')
908     export PRINTER=$(cat ${TMP})
909     echo "PRINTER=${PRINTER}"
910     rm -f ${TMP}
911     lpq
912 }
913
914 ######################################################################
915 # A ls with memory to notice what files have been added/removed from
916 # the current directory
917
918 function lsn () {
919     LSN_MEMORY=".lsn-mem"
920     if  [[ $1 == "--mem" ]]; then
921         \ls > ${LSN_MEMORY}
922     else
923         if [[ -f ${LSN_MEMORY} ]]; then
924             comm -1 -3 ${LSN_MEMORY} <(\ls)
925             comm -2 -3 ${LSN_MEMORY} <(\ls) | while read line; do
926                 echo "${VT_RED_FG}${VT_BOLD}${line}${VT_RESET} (missing)"
927             done
928         else
929             echo "No lsn memory here." >&2
930         fi
931     fi
932 }
933
934 ######################################################################
935
936 function prompt_command () {
937     # save the history after every command to avoid loosing some when
938     # multiple shells are open
939     history -a
940     # load the saved history
941     history -n
942     # and the local histories system defined above
943     keep_local_history
944     # and the history cue
945     histfile_cue
946 }
947
948 PROMPT_COMMAND="prompt_command"
949
950 ######################################################################
951
952 # Displaying the timezone if it is set
953
954 if [[ ${TZ} ]]; then
955     echo "${VT_BOLD}${VT_GREEN_FG}Time zone is ${TZ}.${VT_RESET}"
956 fi
957
958 ######################################################################