Chunyang Xu writes: > Hi. > > My computer is running Mac OS, I would like to run some C code from my > VPS which is running GNU/Linux Ubuntu. For example, > > #+BEGIN_SRC C :dir /ssh:xuchunyang.me: > puts("Hello, World!"); > #+END_SRC > > but when I execute this code block with C-c C-c, it popups *Org-Babel > Error Output* and here is its contents > > /bin/sh: 1: /ssh:xuchunyang.me:/tmp/C-bin-18285iKe: not found > > However, the file does exist and produce the desired output > > #+BEGIN_SRC sh :dir /ssh:xuchunyang.me: > /tmp/C-bin-18285U4c > #+END_SRC > > #+RESULTS: > | Hello | World! |