* Eric Smith <[EMAIL PROTECTED]> [2002-06-24 08:09]:
> How do I create a macro that will instead of
> saving a file scp it to another machine?
I'd save the message to a file
and then transfer it with "scp"
and delete it afterwards.
you could use an external script
to create a temporary filename
and have it delete after transfer
with "scp", of course.
but i'm not sure whether "scp"
accepts data from stdin.
hmm... pipe the message to
scp - user@host:dir/file ?
Sven [usually tests suggestions first
but no time for this right now]