3

I am trying to spawn a shell outside emacs, not in a buffer.

I have tried (start-process "firefox" nil "firefox"), wich does start a firefox process outside emacs, but when i tried (start-process "bash" nil "/bin/bash") nothing seems to happen.

1 Answer 1

6

Because bash it is not the GUI program. Start your terminal emulator instead like

(start-process "xterm" nil (executable-find "xterm"))

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.