# -*- mode: org; mode: auto-fill; -*- #+TITLE: Runlist example #+runmode: sequential In this example, we will have scripts being chained one after another. #+name: first #+begin_src sh :shebang #!/bin/bash sleep 5 echo "first" > out.log #+end_src The script below will only be called once the one above is run. #+name: second #+begin_src ruby File.open("out.log", 'a') {|f| f.puts "second" } #+end_src