]> git.madduck.net Git - etc/mutt.git/commitdiff

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:

Escape sed delimiter when doing subject replacing
authormartin f. krafft <madduck@madduck.net>
Fri, 25 Apr 2014 07:19:10 +0000 (09:19 +0200)
committermartin f. krafft <madduck@madduck.net>
Fri, 25 Apr 2014 07:19:10 +0000 (09:19 +0200)
.mutt/batch-subject-editor

index e5bb596f4a845954f79901b99544943ca2807b06..0649ac5de7b168804dbd51fdcf3017d5c9c6b288 100755 (executable)
@@ -21,9 +21,12 @@ if [ -z "${subj:-}" ]; then
   exit 1
 fi
 
+SED_DELIM=,
+subj=$(echo "$subj" | sed -re "s\1a${SED_DELIM}\1a\\\&\1ag")
+
 RE_REPLY='((re|aw|antwort)([[(]?[[:digit:]]+[)]]?)?):[[:space:]]*'
 RE_SUBJ_PREFIX="^Subject:[[:space:]]*(${RE_REPLY})*"
 RE_SUBJ='.*'
-EDITOR="sed -i -re \"s,(${RE_SUBJ_PREFIX})${RE_SUBJ},\\\1$subj,i\""
+EDITOR="sed -i -re \"s${SED_DELIM}(${RE_SUBJ_PREFIX})${RE_SUBJ}${SED_DELIM}\\\1$subj${SED_DELIM}i\""
 
 printf "set editor='${EDITOR} %s'"