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