从emacs运行perlscript(cscript示例// C:Perlscript)

时间:2010-10-03 09:25:38

标签: perl emacs keyboard-shortcuts

我想为emacs创建一个快捷键来执行此命令:

cscript example //C:Perlscript

example.pl是我想要执行的perl脚本

我已经有了一个执行perl的快捷键:(global-set-key(kbd“”)'perl-eval) 我怎么做到这个?

1 个答案:

答案 0 :(得分:2)

试试这个

(defun run-command () "Run hard coded shell command" (interactive)
   (shell-command (concat "cscript " buffer-file-name " //C:Perlscript")))
(global-set-key (kbd "<f2>") 'run-command)