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