Sha256: 58c5d8a1e98fac8ec3690dc8c1cb6f494ec098dc1fe248335c698a2a4d03aab7
Contents?: true
Size: 406 Bytes
Versions: 6
Compression:
Stored size: 406 Bytes
Contents
# -*- 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
Version data entries
6 entries across 6 versions & 1 rubygems