]> git.madduck.net Git - etc/mutt.git/blob - .config/mutt/filter-proxy

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:

move mutt config to ~/.config
[etc/mutt.git] / .config / mutt / filter-proxy
1 #!/bin/sh
2 #
3 # filter-proxy - enable filters to work on real files (using tmpfiles)
4 #
5 # Copyright © 2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 set -eu
9
10 cmd=
11 file=
12 while [ -n "${1:-}" ]; do
13   if [ -z "${2:-}" ]; then
14     file="$1"
15   else
16     case "$1" in
17       *' '*) cmd="$cmd '$1'";;
18       *) cmd="$cmd $1";;
19     esac
20   fi
21   shift
22 done
23
24 TMPFILE="$(mktemp --tmpdir proxy.XXXXXXXXXX)"
25 trap "rm -f $TMPFILE" 0 1 2 3 4 5 6 7 8 10 11 12 13 14 15
26
27 eval $cmd <"$file" >$TMPFILE
28 cat $TMPFILE >"$file"
29
30 rm -f $TMPFILE
31 trap - 0 1 2 3 4 5 6 7 8 10 11 12 13 14 15