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 # Remove the annoying beeps in console
54
55 # setterm -blength 0
56
57 # || setterm --blength 0 # Seriously?
58
59 ######################################################################
60 ## The interactive part
61
62 export VT_RESET=$'\e[0m'
63 export VT_BOLD=$'\e[1m'
64 export VT_UNDERLINE=$'\e[4m'
65 export VT_BLINK=$'\e[5m'
66
67 export VT_SET_TITLE=$'\e]0;'
68 export VT_END_TITLE=$'\007'
69
70 export VT_BLACK_FG=$'\e[30m'
71 export VT_RED_FG=$'\e[31m'
72 export VT_GREEN_FG=$'\e[32m'
73 export VT_YELLOW_FG=$'\e[33m'
74 export VT_BLUE_FG=$'\e[34m'
75 export VT_MAGENTA_FG=$'\e[35m'
76 export VT_CYAN_FG=$'\e[36m'
77 export VT_WHITE_FG=$'\e[37m'
78
79 export VT_BLACK_BG=$'\e[40m'
80 export VT_RED_BG=$'\e[41m'
81 export VT_GREEN_BG=$'\e[42m'
82 export VT_YELLOW_BG=$'\e[43m'
83 export VT_BLUE_BG=$'\e[44m'
84 export VT_MAGENTA_BG=$'\e[45m'
85 export VT_CYAN_BG=$'\e[46m'
86 export VT_WHITE_BG=$'\e[47m'
87
88 # Colorize man pages!
89
90 export LESS_TERMCAP_us=${VT_GREEN_FG}
91 export LESS_TERMCAP_ue=${VT_RESET}
92 export LESS_TERMCAP_md=${VT_BLUE_FG}${VT_BOLD}
93 export LESS_TERMCAP_me=${VT_RESET}
94
95 # export LESS_TERMCAP_md=$'\e[1;34;40m'
96
97 # This prevents ^S from freezing the shell
98
99 # stty -ixon
100
101 ulimit -c unlimited
102
103 alias ..='cd ..'
104 alias -- -='cd -'
105 alias rm='rm -v -i'
106 alias mv='mv -v -i'
107 alias chmod='chmod -c'
108 alias cp='cp -v -i'
109 alias rd=rmdir
110 alias md='mkdir -pv'
111 alias ps='ps uxaf'
112 alias df='df -hT'
113 # alias df='df -hT --sync'
114 alias grep='grep -i -E --color=auto'
115 alias find='ionice -c3 find'
116 alias pd=pushd
117 alias val='valgrind --leak-check=full --show-reachable=yes --db-attach=yes '
118
119 alias s='screen -d -R -U && clear'
120 alias p='feh --force-aliasing -d --full-screen --auto-zoom'
121
122 function nh () {
123     export HISTFILE=/dev/null
124     unalias cd
125 }
126
127 function select-tz () {
128     # Select a value for TZ
129     TMP=$(mktemp /tmp/select-tz.XXXXXX)
130     selector -o "${TMP}" <(grep -v ^# /usr/share/zoneinfo/zone.tab  | awk '{print $3}' | sort -u)
131     cat "${TMP}"
132     \rm -f "${TMP}"
133 }
134
135 function ding () {
136     if [[ $1 ]] && which winshepherd.sh; then
137         play -q ~/local/sounds/deskbell.wav &
138         unset E_APP_WINDOW
139         winshepherd.sh message green "$1"
140     else
141         play -q ~/local/sounds/deskbell.wav
142     fi
143 }
144
145 alias impressive="impressive -s -D 1000 -t Crossfade -T 100"
146
147 if [[ -e "${HOME}/.dircolors" ]]; then
148     eval $(dircolors "${HOME}/.dircolors")
149     alias ls='ls -p --group-directories-first --color'
150     alias lt='ls -p --color -gohtr --time-style="+%Y %b %d %H:%M"'
151     alias ll='ls -p --color -goh --time-style="+%Y %b %d %H:%M"'
152     alias lll='ls -p --color -lth'
153     alias l='ls -p --color -I "*~" -I "*.o"'
154     alias less='less -R'
155 else
156     alias ls='ls -p --group-directories-first'
157     alias lt='ls -p -gohtr --time-style="+%Y %b %d %H:%M"'
158     alias ll='ls -p -goh --time-style="+%Y %b %d %H:%M"'
159     alias lll='ls -p -lth'
160     alias l='ls -p -I "*~" -I "*.o"'
161 fi
162
163 export EDITOR=emacsclient
164 export GIT_EDITOR=${EDITOR}
165
166 ######################################################################
167 # Ignored extensions when completing
168
169 # export FIGNORE="CVS"
170
171 function latexdiff () {
172     wdiff -n \
173         -w $'\033[30;41m' -x $'\033[0m' \
174         -y $'\033[30;42m' -z $'\033[0m' \
175         "$@"
176 }
177
178 # Looks for the most recent .log and pdflatex + bibtex the
179 # corresponding tex file
180
181 function rl () {
182     # RECENT_LOG=$(ls -t $(find -maxdepth 1 -name "*.log" -type f) | head -1)
183
184     RECENT_LOG=$(ls -t *.log | head -1)
185
186     if [[ ${RECENT_LOG} ]]; then
187         FILEBASE="${RECENT_LOG/.log/}"
188
189         if [[ -f "${FILEBASE}.tex" ]]; then
190
191             pdflatex "${FILEBASE}"
192             bibtex "${FILEBASE}"
193             pdflatex "${FILEBASE}"
194             pdflatex "${FILEBASE}"
195
196             if [[ "$1" ]]; then
197                 if [[ "$1" == "-v" ]] || [[ "$1" == "--view" ]]; then
198                     xpdf "${FILEBASE}.pdf"
199                 elif [[ "$1" == "-p" ]] || [[ "$1" == "--print" ]]; then
200                     lpr "${FILEBASE}.pdf"
201                 else
202                     echo "Usage: rl [-v|--view] [-p|--print]" >&2
203                     echo "Unknown option $1" >&2
204                     return 1
205                 fi
206             fi
207
208         else
209
210             echo "Can not find a tex file corresponding to the most recent log (${RECENT_LOG/.log/})." >&2
211             return 1
212
213         fi
214
215     else
216         echo "Can not find a recent log." >&2
217         return 1
218     fi
219 }
220
221
222 ######################################################################
223 # Functions
224
225 # http://www.reddit.com/r/linux/comments/2cgu5k/a_handy_little_script_for_interacting_with_your/
226 function clip () {
227     if [[ -t 0 ]] && [[ -z "$1" ]]; then
228         # output contents of clipboard
229         xclip -out -selection clipboard || exit 1
230     elif [[ "$1" ]]; then
231         # copy file contents to clipboard
232         xclip -in -selection clipboard < "$1" || exit 1
233     else
234         # copy stdin to clipboard
235         xclip -in -selection clipboard <&0 || exit 1
236     fi
237 }
238
239 # Find a file whose name contains a substring
240
241 function fn () {
242     name=$1
243     shift
244     find "$@" -name "*${name}*";
245 }
246
247 function bak () {
248     while [[ "$1" ]]; do
249         cp "$1" "$1".bak
250         shift
251     done
252 }
253
254 function scan () {
255     n=1
256
257     while [[ -f "${HOME}/scan-${n}.jpg" ]]; do
258         n=$((n+1))
259     done
260
261     while [[ "$1" ]]; do
262         if [[ "$1" == "color" ]]; then
263             OPTS+=" --mode=color"
264         elif [[ "$1" == "a4crop" ]]; then
265             OPTS+=" -l 5 -t 0 -x 200 -y 290"
266         else
267             echo "Unknown argument \`$1'"
268         fi
269         shift
270     done
271
272     echo "**"
273     echo "** Scanning to ${HOME}/scan-${n}.jpg"
274     echo "**"
275
276     scanimage -d genesys:libusb:001:056 \
277               --format=pnm \
278               --mode=color \
279               --depth=8 \
280               -v \
281               --resolution=300 \
282               ${OPTS} | \
283         convert -rotate 180 - "${HOME}/scan-${n}.jpg"
284
285     echo "** Done".
286 }
287
288 # A password generator
289
290 function genpw () {
291     tr -dc A-Za-z0-9 < /dev/urandom | head -c16
292     # tr -dc [:graph:] < /dev/urandom | head -c16
293     echo
294 }
295
296 function ua () {
297
298     [[ "$1" ]] || ( echo "Universal unarchive: ua <file> [<file> ...]" >&2 && return 1)
299
300     while [[ "$1" ]]; do
301
302         case "$1" in
303             *.tgz|*.tar.gz|*.tbz|*.tar.bz2)
304                 tar xvf "$1"
305                 ;;
306
307             *.rar)
308                 unrar -kb x "$1"
309                 ;;
310
311             *.zip)
312                 unzip "$1"
313                 ;;
314
315             *)
316                 echo "Unknown file extension $1"
317                 ;;
318         esac
319
320         shift
321
322     done
323 }
324
325 # Create a dir and cd there
326
327 function mcd () {
328     mkdir -vp "$1"
329     cd "$1"
330 }
331
332 # Capture the screen in a dated png
333
334 function cap () {
335     if [[ $2 ]]; then
336         name=$2
337     else
338         name="capture-$(date +%s).png"
339     fi
340     echo "Waiting $1 s and saving to ${name}."
341     [[ "$1" ]] && sleep "$1"
342     echo "Please click on the window to capture."
343     xwd  | convert - ${name}
344     \ls -l ${name}
345 }
346
347 # Create and CD in a /tmp/tmp.XXXXXX directory. With the '-'
348 # arguments, do not create one and CD in the most recent instead
349
350 function cdt () {
351     if [[ "$1" ]]; then
352         if [[ "$1" == "-" ]]; then
353             cd $(\ls -td /tmp/tmp.?????? | head -1)
354         else
355             echo "USAGE: cdt [-]" >&2
356             return 1
357         fi
358     else
359         dir=$(mktemp -d /tmp/tmp.XXXXXX)
360         link=/tmp/tmp
361         if [[ -h ${link} ]]; then
362             \rm ${link}
363         fi
364         if [[ ! -a ${link} ]]; then
365             ln -s ${dir} ${link}
366         fi
367         cd ${dir}
368     fi
369 }
370
371 alias t='cd /tmp'
372 alias a='cd /tmp/at'
373
374 function trash () {
375     TRASH=$(date +/tmp/trash-${USER}-%Y-%b-%d-%Hh)
376     LINK=/tmp/trash
377
378     mkdir -p ${TRASH}
379
380     [[ -h ${LINK} ]] && \rm ${LINK}
381
382     [[ ! -f ${LINK} ]] && ln -s ${TRASH} ${LINK}
383
384     mv "$@" ${TRASH}
385     echo "Trashed $@"
386 }
387
388 ######################################################################
389 ## A version of pho which stores the image numbers in environment
390 ## variables
391
392 function pho () {
393     TEMP=$(mktemp /tmp/pho.XXXXXXX)
394     $(which pho) "$@" | tee ${TEMP}
395     PHO_NOTE_1=$(grep ^"Note 1: " ${TEMP} | sed -e "s/^[^:]*: //")
396     PHO_NOTE_2=$(grep ^"Note 2: " ${TEMP} | sed -e "s/^[^:]*: //")
397     PHO_NOTE_3=$(grep ^"Note 3: " ${TEMP} | sed -e "s/^[^:]*: //")
398     PHO_NOTE_R90=$(grep ^"Rotate 90 \(CW\): " ${TEMP} | sed -e "s/^[^:]*: //")
399     PHO_NOTE_R180=$(grep ^"Rotate 180: " ${TEMP} | sed -e "s/^[^:]*: //")
400     PHO_NOTE_R270=$(grep ^"Rotate -90 \(CCW\): " ${TEMP} | sed -e "s/^[^:]*: //")
401     [[ "${PHO_NOTE_1}" ]] || unset PHO_NOTE_1
402     [[ "${PHO_NOTE_2}" ]] || unset PHO_NOTE_2
403     [[ "${PHO_NOTE_3}" ]] || unset PHO_NOTE_3
404     [[ "${PHO_NOTE_R90}" ]] || unset PHO_NOTE_R90
405     [[ "${PHO_NOTE_R180}" ]] || unset PHO_NOTE_R180
406     [[ "${PHO_NOTE_R270}" ]] || unset PHO_NOTE_R270
407     \rm ${TEMP}
408 }
409
410 ######################################################################
411 ## A version of date that shows the time at home if TZ is set
412
413 function dt () {
414     echo "Local - $(date)"
415     unset TZ
416     echo "Home  - $(date)"
417 }
418
419 ######################################################################
420 ## ifup / ifdown with sudo and memorization of the network
421
422 ## When invoked without an argument netup uses the same argument as
423 ## the previous time
424
425 ## When invoked without an argument netdown removes the last interface
426 ## which was netuped
427
428 [ ${NETUP_HISTORY} ] || NETUP_HISTORY="${HOME}/.netup_history"
429
430 function netup () {
431     local upped_wifi
432
433     [[ "${WIFI_INTERFACE}" ]] || WIFI_INTERFACE=wlan0
434
435     if [[ "$1" == "--scan" ]]; then
436         if ifconfig -s | grep -v -q ${WIFI_INTERFACE}; then
437             sudo ifconfig ${WIFI_INTERFACE} up
438             upped_wifi=1
439         fi
440
441         sudo iwlist ${WIFI_INTERFACE} scan | \grep -E 'ESS|Quali|Encry' | sed -e 's/^[ \t]*//'
442
443         if [[ ${upped_wifi} ]]; then
444             sudo ifconfig ${WIFI_INTERFACE} down
445             unset upped_wifi
446         fi
447
448         return 0
449     fi
450
451     if \ifconfig -s | grep -q -v ^'(Iface|lo) '; then
452         echo "There is/are already interface(s) up." >&2
453         return 1
454     fi
455
456     if \ps h -C dhclient | grep -q .; then
457         echo "There is already a dhcp client running." >&2
458         return 1
459     fi
460
461     if \ps h -C wpa_supplicant | grep -q .; then
462         echo "There is already a wpa_supplicant running." >&2
463         return 1
464     fi
465
466     if [[ ! "$@" ]] && [[ -s ${NETUP_HISTORY} ]]; then
467         echo "netup <interface>" >&2
468         return 1
469         # # If we have no argument and there is a .netup_history, use it
470         # ARGS=$(cat ${NETUP_HISTORY})
471     else
472         # Otherwise uses the given arguments, and store them
473         ARGS="$@"
474         echo ${ARGS} > ${NETUP_HISTORY}
475     fi
476
477     if [[ "${PRIVATE_INTERFACE_DEFINITION}" ]]; then
478         ARGS="-i ${PRIVATE_INTERFACE_DEFINITION} ${ARGS}"
479     fi
480
481     echo "Executing ${VT_GREEN_FG}[sudo ifup ${ARGS}]${VT_RESET}"
482     sudo ifup ${ARGS}
483
484     # Ugly hack to remove the dsl modem dns server when we add
485     # explicitely a dns in the /etc/network/interfaces
486
487     REMOVE_LOCAL_DNS=/usr/local/bin/remove-local-dns.sh
488     # REMOVE_LOCAL_DNS=${HOME}/sources/scripts/remove-local-dns.sh
489
490     if [[ -x ${REMOVE_LOCAL_DNS} ]]; then
491         echo "Executing ${VT_GREEN_FG}[sudo ${REMOVE_LOCAL_DNS} 192.168]${VT_RESET}"
492         sudo ${REMOVE_LOCAL_DNS} 192.168
493     fi
494 }
495
496 function netdown () {
497     if [[ ! "$@" ]] && [[ -s ${NETUP_HISTORY} ]]; then
498         # If there are no arguments and there is a .netup_history, get the
499         # interface from it
500         ARGS=$(tail -1 ${NETUP_HISTORY} | sed -e "s/=.*$//")
501     else
502         # Otherwise, use the standard ifdown
503         ARGS="$@"
504     fi
505
506     [[ "${PRIVATE_INTERFACE_DEFINITION}" ]] && ARGS="-i ${PRIVATE_INTERFACE_DEFINITION} ${ARGS}"
507
508     echo "Executing sudo ${VT_GREEN_FG}[ifdown ${ARGS}]${VT_RESET}"
509     sudo ifdown ${ARGS}
510
511     # if [[ $(\ps -C dhclient | tail -n +2) ]]; then
512     # echo "There is still a dhcp client running." >&2
513     # return 1
514     # fi
515
516     # if [[ $(\ps -C wpa_supplicant | tail -n +2) ]]; then
517     # echo "There is still a wpa_supplicant running." >&2
518     # return 1
519     # fi
520 }
521
522 function checkgw () {
523     GW=$(route -n | grep ^0.0.0.0 | awk '{print $2}')
524     if [[ "${GW}" ]]; then
525         ping ${GW}
526     else
527         echo "Can not find a getaway." >&2
528         return 1
529     fi
530 }
531
532 ######################################################################
533 # Show the most recent files, no scroll
534
535 function lr () {
536     HEIGHT=$(stty size | awk '{print $1}')
537     WIDTH=$(stty size | awk '{print $2}')
538     \ls -goth --time-style="+%Y %b %d %H:%M" "$@" | \
539         head -$((HEIGHT-2)) | \
540         cut -b1-${WIDTH}
541 }
542
543 ######################################################################
544 # You can change the xterm background color on the fly!
545
546 function setxtermbg () {
547     echo -n $'\e]11;'$1$'\007'
548 }
549
550 ######################################################################
551 # Shuffle the lines from the stdin
552
553 function shuffle () {
554     SEED=$1
555     [[ $SEED ]] || SEED=0
556     awk 'BEGIN{srand('${SEED}')} { print rand()" "$0 }' | sort -g | sed -e "s/^[0-9\.e\-]* //"
557 }
558
559 ######################################################################
560 # Stores the last entered command into a file
561
562 KEPT_COMMANDS=${HOME}/.kept_bash_commands
563
564 function keep () {
565     if [[ ${KEPT_COMMANDS} ]]; then
566         TOKEEP=$(mktemp /tmp/keep.XXXXXX)
567         if [[ "$@" ]]; then
568             echo "$@" > ${TOKEEP}
569         else
570             selector -b -i -d -l ${HISTSIZE} -o "${TOKEEP}" <(history)
571         fi
572
573         if [[ -s "${TOKEEP}" ]]; then
574             echo $(date)": "$(cat ${TOKEEP}) >> ${KEPT_COMMANDS}
575             cat "${TOKEEP}"
576         else
577             echo "No command stored!"
578         fi
579
580         \rm ${TOKEEP}
581     else
582         echo "You have to set \$KEPT_COMMANDS"
583     fi
584 }
585
586 ######################################################################
587 # I sometime burn CDs and DVDs
588
589 function burn () {
590     [[ "${DEV_BURNER}" ]] || DEV_BURNER="/dev/sr0"
591     if [[ ! "$1" ]]; then
592         echo "burn <iso name | dirname>" >&2
593     elif [[ -f "$1" ]]; then
594         if [[ $(file "$1" | \grep -E 'ISO 9660|UDF filesystem data') ]]; then
595             wodim -eject -v dev=${DEV_BURNER} "$1"
596         else
597             echo "Do not know what to do with $1" >&2
598         fi
599     elif [[ -d "$1" ]]; then
600         [[ "${TMP_ROOT}" ]] || TMP_ROOT=/tmp/
601         echo "Using ${TMP_ROOT} as temporary directory."
602         TMP=$(mktemp ${TMP_ROOT}/cdimage.XXXXXX) && \
603             genisoimage -input-charset iso8859-1 -r -o ${TMP} "$1" && \
604             wodim -eject -v dev=${DEV_BURNER} ${TMP}
605         rm -f ${TMP}
606     else
607         echo "Can not find $1" >&2
608     fi
609 }
610
611 ######################################################################
612 # And watch DVDs too!
613
614 function dvd () {
615
616     echo
617     echo " ! @   Seek to the beginning of the previous/next chapter"
618     echo " j     Cycle through the available subtitles"
619     echo " o     Show/hide the timing"
620     echo " x z   Subtitle delay"
621     echo " / *   Volume"
622     echo
623
624     if [[ "$1" ]]; then
625         dvd_device="$1"
626         shift
627     else
628         dvd_device="/dev/dvd"
629     fi
630
631     title="1"
632
633     if [[ "$1" ]]; then
634         title=$1
635         shift
636     fi
637
638     # -vc ffmpeg12 -vf yadif
639
640     mplayer > /dev/null \
641         -stop-xscreensaver \
642         -quiet \
643         -alang en -slang en \
644         -softvol -softvol-max 1000 \
645         -dvd-device ${dvd_device} ${MPLAYER_OPTIONS} dvd://${title}
646 }
647
648 function ripdvd () {
649     if [[ -e "/dev/dvd" ]]; then
650         DVD_DEVICE="/dev/dvd"
651     elif [[ -e "/dev/dvd3" ]]; then
652         DVD_DEVICE="/dev/dvd3"
653     else
654         echo "Can not find the dvd device." >&2
655         return 1
656     fi
657
658     echo "Attemptin to rip from ${DVD_DEVICE}."
659
660     mkdir -p ${HOME}/dvds
661
662     cd ${HOME}/dvds
663     time dvdbackup -i ${DVD_DEVICE} -v -M "$@" && eject
664 }
665
666 alias ripcd=abcde
667
668 ######################################################################
669 # Create small images from images
670
671 function mksmall () {
672
673     if [[ "$1" == "--params" ]]; then
674         shift
675         PARAMS="$1"
676         shift
677     fi
678
679     [[ "${PARAMS}" ]] || PARAMS="-geometry 1280x1024"
680
681     # Auto-orient does not seem to work at all, hence the ugly hack
682     # with exif below
683
684     # PARAMS="-auto-orient -geometry 800x600"
685
686     echo "Using ${PARAMS}"
687
688     DEST_DIR=$1
689
690     [[ ${DEST_DIR} ]] || DEST_DIR=./small
691
692     mkdir -p ${DEST_DIR}
693
694     if [[ ! -d ${DEST_DIR} ]]; then
695         echo "Can not create ${DEST_DIR}" >&2
696         return
697     fi
698
699     NB_TOTAL=$(find -maxdepth 1 -type f | wc -l)
700     NB=0
701
702     for i in $(find -maxdepth 1 -type f); do
703         if [[ $(file $i | grep image) ]]; then
704             if [[ -e ${DEST_DIR}/$i ]]; then
705                 echo "The file ${DEST_DIR}/$i already exists."
706             else
707                 if [[ $(file ${i/%.*/}.* | grep -E movie) ]] ; then
708                     CAPTION_PARAMS="-font FreeSans-Bold -pointsize 32 -fill green -annotate +10+32 Video"
709                 else
710                     CAPTION_PARAMS=""
711                 fi
712
713                 convert ${rotation_cmd} $i ${PARAMS} ${CAPTION_PARAMS} ${DEST_DIR}/$i
714             fi
715
716             \ls -lt ${DEST_DIR}/$i
717         fi
718
719         NB=$((NB+1))
720
721         echo "$((NB*100/NB_TOTAL))% (${NB}/${NB_TOTAL})"
722     done
723 }
724
725 ######################################################################
726 # Move a file to the ~/sources/config directory and replace it where
727 # it was by a symbolic link
728
729 function mvtoconfig () {
730     CONFIGDIR=${HOME}/sources/config
731     if [[ -d ${CONFIGDIR} ]]; then
732         NEWNAME=${CONFIGDIR}/$(basename "$1" | sed -e "s/^\.//")
733         mv "$1" $NEWNAME
734         ln -s $NEWNAME $1
735     else
736         echo "Can not find ${CONFIGDIR}"
737     fi
738 }
739
740 ######################################################################
741 # The complex prompt policy
742
743 export PS1
744
745 if [[ "${CONSOLE}" == "yes" ]]; then
746     PS1=""
747 else
748
749     # If the login is a standard one (as specified in
750     # IGNORED_PROMPT_LOGIN, which is set in the private bash file), do not
751     # show it. I have IGNORED_PROMPT_LOGIN="^fleuret$".
752
753     if [[ ! ${IGNORED_PROMPT_LOGIN} ]] || [[ ! ${USER} =~ ${IGNORED_PROMPT_LOGIN} ]]; then
754         IDENT="${USER}"
755     fi
756
757     # If the display is not the main one, make the assumption that the
758     # shell is not running on the localhost, and show the hostname
759
760     [[ "${DISPLAY}" != ":0.0" ]] && IDENT="${IDENT}@\h"
761
762     # If there is the login or the hostname, add a ":" to the prompt
763
764     [[ "${IDENT}" ]] && IDENT="${IDENT}:"
765
766     if [[ ${USER} == "root" ]]; then
767         # If we are root, show that in red
768         PS1="\[${VT_RED_BG}${VT_WHITE_FG}\]${IDENT}\w\[${VT_RESET}\] "
769     else
770         if [[ $(\grep QEMU /proc/cpuinfo) ]]; then
771             # If we are in a qemu virtual machine, in yellow
772             PS1="\[${VT_YELLOW_BG}${VT_BLACK_FG}\]${IDENT}\w\[${VT_RESET}\] "
773         else
774             # Otherwise in white
775             PS1="\[${VT_WHITE_BG}${VT_BLACK_FG}\]${IDENT}\w\[${VT_RESET}\] "
776         fi
777     fi
778
779 fi
780
781 ######################################################################
782 # This implements a local history. If we are in a directory containing
783 # a writable local history file, we add the last line of the global
784 # history to it.
785
786 LOCAL_HISTORY_FILE=".local_bash_history"
787
788 function keep_local_history () {
789     if [[ -w "${LOCAL_HISTORY_FILE}" ]]; then
790         history 1 | sed -e 's/^ *[0-9]* *//' >> ${LOCAL_HISTORY_FILE}
791         TMP=$(mktemp /tmp/lh.XXXXXX)
792         \chmod 600 ${TMP}
793         uniq < ${LOCAL_HISTORY_FILE} | tail -${HISTSIZE} > ${TMP}
794         # mv would replace a symbolic link, while cp keeps it
795         \cp ${TMP} ${LOCAL_HISTORY_FILE}
796         \rm ${TMP}
797         LOCAL_HISTORY_HINT="* "
798     else
799         LOCAL_HISTORY_HINT=""
800     fi
801 }
802
803 PS1="\[${VT_WHITE_BG}\]\${LOCAL_HISTORY_HINT}\[${VT_RESET}\]${PS1}"
804
805 ######################################################################
806 # Show the history path if it is unusual
807
808 function histfile_cue () {
809     if [[ ! "${HISTFILE}" == "${HOME}/.bash_history" ]]; then
810         HISTORY_CUE="[${HISTFILE}]"
811     else
812         HISTORY_CUE=""
813     fi
814 }
815
816 PS1="\[${VT_YELLOW_BG}\]\${HISTORY_CUE}\[${VT_RESET}\]${PS1}"
817
818 ######################################################################
819 # The dus command is available on my web site
820 #
821 # git clone http://fleuret.org/git/dus/
822
823 alias dus='dus -f -i'
824
825 ######################################################################
826 # The finddup command is available on my web site
827 #
828 # git clone http://fleuret.org/git/finddup/
829
830 alias finddup='finddup -p'
831
832 ######################################################################
833 # The selector command is available on my web site
834 #
835 # git clone http://fleuret.org/git/selector/
836
837 export SELECTOR_CD_HISTORY_SIZE=10000
838
839 source bash-selector.sh --hist --cd
840
841 ######################################################################
842 # And we avoid to put in the history the use of the selector, which we
843 # do too often
844
845 HISTIGNORE="${HISTIGNORE}:selector-history"
846
847 ######################################################################
848
849 function selector-printer () {
850     TMP=$(mktemp /tmp/selector-printer.XXXXXX)
851     selector -o ${TMP} <(lpstat -a | awk '{print $1}')
852     export PRINTER=$(cat ${TMP})
853     echo "PRINTER=${PRINTER}"
854     rm -f ${TMP}
855     lpq
856 }
857
858 ######################################################################
859 # A ls with memory to notice what files have been added/removed from
860 # the current directory
861
862 function lsn () {
863     [[ "${LSN_STATE_FILE}" ]] || LSN_STATE_FILE=".lsn-state"
864
865     if  [[ $1 == "--mem" ]] || [[ "$1" == "-m" ]]; then
866
867         \ls -pa | sort > "${LSN_STATE_FILE}"
868         echo "State updated." >&2
869
870     elif [[ $1 == "+" ]]; then
871
872         shift
873
874         TMP=$(mktemp /tmp/lsn.XXXXXX)
875         \ls -d "$@" > ${TMP}
876         cat "${LSN_STATE_FILE}" >> ${TMP}
877         sort ${TMP} | uniq -u > "${LSN_STATE_FILE}"
878         \rm ${TMP}
879
880     elif [[ "$1" ]]; then
881         cat >&2 <<EOF
882 lsn [--help|-h] [--mem|-m] [+ <file> ...]
883
884 Where
885
886   --help|-h
887      prints this help
888
889   --mem|-m
890      stores the current state of the directory
891
892   + <file> [<file> ...]
893      switches the presence/absence of the indicated files in the
894      stored state
895
896 EOF
897         if [[ ! "$1" == "-h" ]] && [[ ! "$1" == "--help" ]]; then
898             echo >&2 "Unknown option \`\`$1''."
899             return 1
900         fi
901
902     else
903
904         if [[ -f "${LSN_STATE_FILE}" ]]; then
905             TMP=$(mktemp /tmp/lsn.XXXXXX)
906             \ls -pa | sort > ${TMP}
907             if diff > /dev/null ${TMP} "${LSN_STATE_FILE}"; then
908                 echo "${VT_GREEN_FG}${VT_BOLD}No change (since $(date +"%b %d, %Y" -r "${LSN_STATE_FILE}"))${VT_RESET}"
909             else
910                 \comm -1 -3 "${LSN_STATE_FILE}" ${TMP}
911                 \comm -2 -3 "${LSN_STATE_FILE}" ${TMP} | while read line; do
912                     echo "${VT_RED_FG}${VT_BOLD}${line}${VT_RESET} (missing)"
913                 done
914             fi
915             \rm ${TMP}
916         else
917             echo "${VT_RED_FG}${VT_BOLD}No lsn state here.${VT_RESET}" >&2
918             return 1
919         fi
920
921     fi
922 }
923
924 ######################################################################
925
926 function prompt_command () {
927     # if [[ $(umask) != 0022 ]]; then
928         # echo "Umask changed to $(umask)"
929     # fi
930     # save the history after every command to avoid loosing some when
931     # multiple shells are open
932     history -a
933     # load the saved history
934     history -n
935     # and the local histories system defined above
936     keep_local_history
937     # and the history cue
938     histfile_cue
939 }
940
941 PROMPT_COMMAND="prompt_command"
942
943 ######################################################################
944
945 # Displaying the timezone if it is set
946
947 [[ ${TZ} ]] && echo "${VT_BLUE_FG}Time zone is ${TZ}.${VT_RESET}"
948
949 ######################################################################