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