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