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