help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Cannot open attachments with gnus


From: Alan Schmitt
Subject: Re: Cannot open attachments with gnus
Date: Wed, 18 Dec 2013 21:39:18 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (darwin)

Ted Zlatanov <tzz@lifelogs.com> writes:

> I'm glad you found something that works for now, either way!

Thanks. And for the record, this is what I ended up doing:

myopen.sh:
#+BEGIN_SRC sh
#!/bin/sh

DESTDIR=`mktemp -d -t myopen`
FILE=`basename $1`
cp "$1" "$DESTDIR"
open "$DESTDIR/$FILE"
#+END_SRC

It creates a "safe" copy of the file before calling open. I've been
using it this afternoon and it works nicely.

Thanks again,

Alan


reply via email to

[Prev in Thread] Current Thread [Next in Thread]