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構成ファイルを1つのファイルにマージする機能を作りたいです。今度は、次のような bash スクリプト ファイルを使用してこれを行います。
> init.el for d in ./defun/*.el ; do cat $d >> init.el echo $d done
Emacs に「マージ」オプションがあることは知っていますが、2 つのファイルしかマージできません。
助けてくれてありがとう!
スクリプトを 1 つのコマンドに単純化できます。
cat defun/*.el > init.el
に直接渡すことができますshell-command。
shell-command