0

我的 .bashrc 文件中定义了一些 bash 函数。在 emacs shell 模式下,我想使用完整的函数名称。

emacs `shell' 包默认不能完成功能,所以打算增强一下。

问题是我无法获取 shell 的当前函数定义。查询函数定义的常用方法是键入:

   $ declare -F

由于 'declare' 只是一个内置命令,我们应该将它包装在一个脚本文件中,然后用 'bash' 调用它。使用 emacs,我们可以:

   * create a file, wrap the code:

     -------------- file: get-functions -----------

     declare -F

     -------------- file end ----------------------

   * in emacs, eval the expression:

     (call-process "bash" "get-functions" "output-buffer")

但是,我在“输出缓冲区”中一无所获。有趣的是,如果我在真正的 shell 中运行脚本:

  $ bash get-functions

我仍然没有任何输出。

这是否意味着我们不能在脚本中使用`declare -F'?

顺便说一句,如果我们从脚本文件中删除“-F”选项,那么我们可以在调用“bash get-functions”时得到输出,但我们得到的不是函数定义,而是所有变量。

我的环境:GNU bash,版本 4.1.2(1)-release (i386-redhat-linux-gnu),CentOS 6.3 32bits

4

2 回答 2

0

还没有解决方案,只是为了检查“declare -F”是否有效:

(shell)
(comint-send-string (get-buffer-process "*shell*") "declare -F")
(comint-send-string (get-buffer-process "*shell*") "\n")
(switch-to-buffer "*shell*") 
于 2013-08-23T11:05:26.257 回答
0

从我的脑海中,我猜这与未导出的函数有关(并且 bash 当前无法导出函数)。换句话说:你必须找到你的函数。

...您也可以通过使用登录 shell 来解决此问题,但对我来说,立即采购似乎更容易。

于 2013-08-23T11:24:44.320 回答