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