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