Portable Emacs Eshell Aliases
(defun +alias (al cmd) “handy wrapper function to convert alias symbols to aliasstrings to avoid writing 4 quotes per alias. AL is a single-wordsymbol naming the alias, CMD is a list symbol describing thecommand." (add-to-list ’eshell-command-aliases-list (list (symbol-name al) (mapconcat ‘symbol-name cmd ” “))))