Files
2019-09-22 21:35:05 -04:00

17 lines
446 B
Plaintext

hello: hello/reuse hello/reuse/concurrent
echo "You just ran $(red 'hello') directly, then indirectly (via bake+bash; 6 times, concurrently!)"
hello/basic:
sleep 2
echo "[$(red $(uuidgen))] hello!"
hello/reuse:
bake hello/basic
hello/reuse/concurrent:
set -ex && \
bake hello/reuse &
bake hello/reuse &
bake hello/reuse &
bake hello/reuse &
bake hello/reuse &
bake hello/reuse