I would like to use the session feature for bash source blocks, and receive the error message.
No org-babel-initiate-session function for bash! A simple code is shown below. The code can be executed through C-cC-c. Yet I received the error message when pressing C-cC-vz.
#+BEGIN_SRC bash :session *bash* echo $0 #+END_SRC #+RESULTS: | | | /bin/bash | Interestingly, C-c C-v z works for sh source block.
#+BEGIN_SRC sh :session *sh* echo $0 #+END_SRC #+RESULTS: | | | /bin/sh | I use doom emacs, and the vanilla configuration for both org-mode and org-babel. Anyone knows what the potential issues are.
C-c C-v z, cool!!