Sha256: 018a375db1a75d9b4c4010495357bfdc4db8c8e7ffcc4d6be45b9161d6960bdd

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

#+TITLE: Code block modifiers

We have the following process, but it will take 5 seconds to start...

#+name: waits-5-seconds
#+begin_src sh :sleep 2
echo "Wait..."
for i in `seq 1 4`;
do
echo $i
echo $i >> out.log
sleep 1
done
echo "Now done!"
#+end_src

This one on the other hand starts as soon as possible:

#+name: does-not-wait
#+begin_src sh 
echo "whoosh" > out.log
#+end_src

** COMMENT Fails sometimes

#+name: timeout-in-3-seconds
#+begin_src sh :timeout 5
while true; do
  echo "Eventually will timeout..."
  sleep 1
done
#+end_src

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
org-converge-0.0.15 spec/converge_examples/block_modifiers/run.org