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