Opening any CLI in Emacs

from blog Two-Wrongs, | ↗ original
↗ original
Reddit pointed out that there is a much easier way to accomplish what is described in this article: Reddit pointed out that there is a much easier way to accomplish what is described in this article: C-u M-x comint-runC-u M-x comint-run, then type the executable name in the first prompt, and arguments in the second prompt. , then type the executable name in the first prompt, and arguments in the second prompt. This can also be used from Emacs Lisp: This can also be used from Emacs Lisp: In[1]:In[1]: (comint-run (comint-run "perl""perl" '( '("-de""-de" "0""0")') )') I’m keeping the rest of the article anyway because I enjoy public... I’m keeping the rest of the article anyway because I enjoy public...