How can I execute elisp in the currently running emacs from the command line?
The following command echoes 'hi' but doesn't set 'abc
in the emacs instance.
emacsclient --no-wait --eval '(message "hi") (setq abc)'
Is there a way to modify emacs from the command line?
My specific use case is to revert all buffers with a shell command.