Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个函数来将一个文件夹中的所有 emacs 配置文件合并到一个文件中。现在我使用 bash 脚本文件执行此操作,如下所示:
> init.el for d in ./defun/*.el ; do cat $d >> init.el echo $d done
我知道 Emacs 有一个“合并”选项,但它只合并 2 个文件。
非常感谢您的帮助!
您可以将脚本简化为单个命令:
cat defun/*.el > init.el
您可以直接将其传递给shell-command.
shell-command