9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ディレクトリ内のすべてのEmacs Lispファイルを一発でバイトコンパイル

Last updated at Posted at 2014-11-18

はじめに

ディレクトリ内のEmacs Lispファイルを一発でバイトコンパイルするには,
Emacsから下記を実行すれば良い.

C-u 0 M-x byte-recompile-directory

しかし, 再帰的には適用されないため,
第2階層以降のディレクトリ内にあるファイルはバイトコンパイルできない.

対応策

そこで, Emacs内からでなく, 下記のようにコマンドラインからバイトコンパイルできることを利用する.

$ emacs -batch -f batch-byte-compile /path/to/*.el

したがって, 下記のようにすれば, ディレクトリ内のファイルを再帰的にバイトコンパイルできる.

$ find /path/to -name '*.el' | xargs emacs -batch -f batch-byte-compile

なお, Zshでは簡潔に, 下記でバイトコンパイルできる.

$ emacs -batch -f batch-byte-compile /path/to/**/*.el

参考

9
9
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?