]> git.madduck.net Git - etc/mutt.git/blob - .config/mutt/batch-subject-editor

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

add siby alternate
[etc/mutt.git] / .config / mutt / batch-subject-editor
1 #!/bin/sh
2 #
3 # batch-subject-editor - helper script to change subject lines with mutt
4 #
5 # Based on an idea by David Champion <dgc at uchicago.edu>
6 #
7 # Copyright © 2008 martin f. krafft <madduck@madduck.net>
8 # Released under the terms of the Artistic Licence 2.0
9 #
10 set -eu
11
12 if [ -z "${__RLWRAPPED:-}" ] && [ -x $(command -v rlwrap) ]; then
13   __RLWRAPPED=true exec rlwrap "$0" "$@"
14 fi
15
16 printf 'Enter new subject: ' >/dev/tty
17 read subj </dev/tty
18
19 if [ -z "${subj:-}" ]; then
20   echo No subject specified. >&2
21   exit 1
22 fi
23
24 SED_DELIM=,
25 subj=$(echo "$subj" | sed -re "s\1a${SED_DELIM}\1a\\\&\1ag")
26
27 RE_REPLY='((re|aw|antwort)([[(]?[[:digit:]]+[)]]?)?):[[:space:]]*'
28 RE_SUBJ_PREFIX="^Subject:[[:space:]]*(${RE_REPLY})*"
29 RE_SUBJ='.*'
30 EDITOR="sed -i -re \"s${SED_DELIM}(${RE_SUBJ_PREFIX})${RE_SUBJ}${SED_DELIM}\\\1$subj${SED_DELIM}i\""
31
32 printf "set editor='${EDITOR} %s'"