我使用elfeed
来阅读RSS。
在每个RSS中都有一个指向torrent文件的http链接。
我想调用一个外部程序(aria2c
)来下载该torrent链接,假设Emacs中没有这样的工具。
如何编写一个小函数来执行此操作?
答案 0 :(得分:2)
这是一个简单的解决方案:
(defun open-with-ariac2()
(interactive)
(shell-command
(format (concat "aria2c " (browse-url-url-at-point)))))