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